2024-01-10 18:54:00 +01:00
|
|
|
/* Copyright (C) 2019-2024 Andreas Shimokawa, Arjan Schrijver
|
2019-05-22 00:42:22 +02:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
2024-01-10 18:54:00 +01:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2019-05-22 00:42:22 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.util;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.text.format.DateFormat;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.TimePicker;
|
|
|
|
|
|
|
|
import androidx.preference.DialogPreference;
|
|
|
|
import androidx.preference.Preference;
|
|
|
|
|
2023-07-22 21:23:27 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.dialogs.MaterialPreferenceDialogFragment;
|
|
|
|
|
|
|
|
public class XTimePreferenceFragment extends MaterialPreferenceDialogFragment implements DialogPreference.TargetFragment {
|
2019-05-22 00:42:22 +02:00
|
|
|
private TimePicker picker = null;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected View onCreateDialogView(Context context) {
|
|
|
|
picker = new TimePicker(context);
|
|
|
|
picker.setIs24HourView(DateFormat.is24HourFormat(getContext()));
|
|
|
|
picker.setPadding(0, 50, 0, 50);
|
|
|
|
|
|
|
|
return picker;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onBindDialogView(View v) {
|
|
|
|
super.onBindDialogView(v);
|
|
|
|
XTimePreference pref = (XTimePreference) getPreference();
|
|
|
|
|
|
|
|
picker.setCurrentHour(pref.hour);
|
|
|
|
picker.setCurrentMinute(pref.minute);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDialogClosed(boolean positiveResult) {
|
|
|
|
|
|
|
|
if (positiveResult) {
|
|
|
|
XTimePreference pref = (XTimePreference) getPreference();
|
|
|
|
|
|
|
|
pref.hour = picker.getCurrentHour();
|
|
|
|
pref.minute = picker.getCurrentMinute();
|
|
|
|
|
|
|
|
String time = pref.getTime24h();
|
|
|
|
if (pref.callChangeListener(time)) {
|
|
|
|
pref.persistStringValue(time);
|
|
|
|
pref.updateSummary();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Preference findPreference(CharSequence key) {
|
|
|
|
return getPreference();
|
|
|
|
}
|
|
|
|
}
|