mirror of
https://github.com/BlackyHawky/Clock.git
synced 2025-07-02 15:11:11 +00:00
Make mHourPicker/mMinutePicker/mSecondPicker private
and final
- Related to commit e995e9a
;
This commit is contained in:
parent
d185af8c85
commit
e40e72282b
1 changed files with 4 additions and 3 deletions
|
@ -18,9 +18,10 @@ import java.util.concurrent.TimeUnit;
|
||||||
* Custom component to display a time selection view using spinners used when creating timers.
|
* Custom component to display a time selection view using spinners used when creating timers.
|
||||||
*/
|
*/
|
||||||
public class CustomTimerSpinnerSetupView extends LinearLayout {
|
public class CustomTimerSpinnerSetupView extends LinearLayout {
|
||||||
NumberPicker mHourPicker;
|
|
||||||
NumberPicker mMinutePicker;
|
private final NumberPicker mHourPicker;
|
||||||
NumberPicker mSecondPicker;
|
private final NumberPicker mMinutePicker;
|
||||||
|
private final NumberPicker mSecondPicker;
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
OnValueChangeListener mOnValueChangeListener;
|
OnValueChangeListener mOnValueChangeListener;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue