142 lines
5.2 KiB
Java
142 lines
5.2 KiB
Java
|
/*
|
||
|
* Copyright (C) 2015 The CyanogenMod Project
|
||
|
* 2017-2018 The LineageOS Project
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package org.lineageos.settings.doze;
|
||
|
|
||
|
import android.app.ActionBar;
|
||
|
import android.app.Activity;
|
||
|
import android.app.AlertDialog;
|
||
|
import android.app.Dialog;
|
||
|
import android.app.DialogFragment;
|
||
|
import android.content.Context;
|
||
|
import android.content.DialogInterface;
|
||
|
import android.content.SharedPreferences;
|
||
|
import android.os.Bundle;
|
||
|
import android.support.v14.preference.PreferenceFragment;
|
||
|
import android.support.v14.preference.SwitchPreference;
|
||
|
import android.support.v7.preference.Preference;
|
||
|
import android.support.v7.preference.Preference.OnPreferenceChangeListener;
|
||
|
import android.view.LayoutInflater;
|
||
|
import android.view.MenuItem;
|
||
|
import android.view.View;
|
||
|
import android.view.ViewGroup;
|
||
|
import android.widget.CompoundButton;
|
||
|
import android.widget.Switch;
|
||
|
import android.widget.TextView;
|
||
|
|
||
|
public class DozeSettingsFragment extends PreferenceFragment implements OnPreferenceChangeListener,
|
||
|
CompoundButton.OnCheckedChangeListener {
|
||
|
|
||
|
private TextView mTextView;
|
||
|
|
||
|
private SwitchPreference mPickUpPreference;
|
||
|
|
||
|
@Override
|
||
|
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
|
||
|
addPreferencesFromResource(R.xml.doze_settings);
|
||
|
final ActionBar actionBar = getActivity().getActionBar();
|
||
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
||
|
|
||
|
SharedPreferences prefs = getActivity().getSharedPreferences("doze_settings",
|
||
|
Activity.MODE_PRIVATE);
|
||
|
if (savedInstanceState == null && !prefs.getBoolean("first_help_shown", false)) {
|
||
|
showHelp();
|
||
|
}
|
||
|
|
||
|
boolean dozeEnabled = Utils.isDozeEnabled(getActivity());
|
||
|
|
||
|
mPickUpPreference = (SwitchPreference) findPreference(Utils.GESTURE_PICK_UP_KEY);
|
||
|
mPickUpPreference.setEnabled(dozeEnabled);
|
||
|
mPickUpPreference.setOnPreferenceChangeListener(this);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||
|
Bundle savedInstanceState) {
|
||
|
final View view = LayoutInflater.from(getContext()).inflate(R.layout.doze, container, false);
|
||
|
((ViewGroup) view).addView(super.onCreateView(inflater, container, savedInstanceState));
|
||
|
return view;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
||
|
super.onViewCreated(view, savedInstanceState);
|
||
|
|
||
|
boolean dozeEnabled = Utils.isDozeEnabled(getActivity());
|
||
|
|
||
|
mTextView = view.findViewById(R.id.switch_text);
|
||
|
mTextView.setText(getString(dozeEnabled ?
|
||
|
R.string.switch_bar_on : R.string.switch_bar_off));
|
||
|
|
||
|
View switchBar = view.findViewById(R.id.switch_bar);
|
||
|
Switch switchWidget = switchBar.findViewById(android.R.id.switch_widget);
|
||
|
switchWidget.setChecked(dozeEnabled);
|
||
|
switchWidget.setOnCheckedChangeListener(this);
|
||
|
switchBar.setOnClickListener(v -> switchWidget.setChecked(!switchWidget.isChecked()));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onPreferenceChange(Preference preference, Object newValue) {
|
||
|
Utils.enablePickUp(getActivity(), (Boolean) newValue);
|
||
|
Utils.checkDozeService(getActivity());
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onCheckedChanged(CompoundButton compoundButton, boolean isChecked) {
|
||
|
Utils.enableDoze(getActivity(), isChecked);
|
||
|
Utils.checkDozeService(getActivity());
|
||
|
|
||
|
mTextView.setText(getString(isChecked ? R.string.switch_bar_on : R.string.switch_bar_off));
|
||
|
|
||
|
mPickUpPreference.setEnabled(isChecked);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||
|
if (item.getItemId() == android.R.id.home) {
|
||
|
getActivity().onBackPressed();
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
private static class HelpDialogFragment extends DialogFragment {
|
||
|
@Override
|
||
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
||
|
return new AlertDialog.Builder(getActivity())
|
||
|
.setTitle(R.string.doze_settings_help_title)
|
||
|
.setMessage(R.string.doze_settings_help_text)
|
||
|
.setNegativeButton(R.string.dialog_ok, (dialog, which) -> dialog.cancel())
|
||
|
.create();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onCancel(DialogInterface dialog) {
|
||
|
getActivity().getSharedPreferences("doze_settings", Activity.MODE_PRIVATE)
|
||
|
.edit()
|
||
|
.putBoolean("first_help_shown", true)
|
||
|
.commit();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void showHelp() {
|
||
|
HelpDialogFragment fragment = new HelpDialogFragment();
|
||
|
fragment.show(getFragmentManager(), "help_dialog");
|
||
|
}
|
||
|
}
|