- Add missing title to preference screen xml so that they will be used to set the activity title when the fragment is launched. - Also updated some incorrect preference screen titles. - Overrides getTitle() in preference fragments that do not use the preference screen xml. Bug: 64564191 Test: blaze-bin/screenshots/android/i18nscreenshots/i18nscreenshots Change-Id: Id72d5ddf18f0962bc484de8bbd847a2e55d6371e
156 lines
5.3 KiB
Java
156 lines
5.3 KiB
Java
/*
|
|
* Copyright (C) 2013 The Android Open Source 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 com.android.settings.accessibility;
|
|
|
|
import android.content.Intent;
|
|
import android.content.pm.ResolveInfo;
|
|
import android.os.Bundle;
|
|
import android.support.v7.preference.Preference;
|
|
import android.support.v7.preference.PreferenceScreen;
|
|
import android.support.v7.preference.PreferenceViewHolder;
|
|
import android.view.Menu;
|
|
import android.view.MenuInflater;
|
|
import android.view.MenuItem;
|
|
import android.view.View;
|
|
import android.view.accessibility.AccessibilityEvent;
|
|
import android.view.accessibility.AccessibilityManager;
|
|
import android.widget.TextView;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.SettingsActivity;
|
|
import com.android.settings.SettingsPreferenceFragment;
|
|
import com.android.settings.widget.SwitchBar;
|
|
import com.android.settings.widget.ToggleSwitch;
|
|
|
|
public abstract class ToggleFeaturePreferenceFragment
|
|
extends SettingsPreferenceFragment {
|
|
|
|
protected SwitchBar mSwitchBar;
|
|
protected ToggleSwitch mToggleSwitch;
|
|
|
|
protected String mPreferenceKey;
|
|
|
|
protected CharSequence mSettingsTitle;
|
|
protected Intent mSettingsIntent;
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
final int resId = getPreferenceScreenResId();
|
|
if (usePreferenceScreenTitle() && resId > 0) {
|
|
addPreferencesFromResource(resId);
|
|
} else {
|
|
PreferenceScreen preferenceScreen = getPreferenceManager().createPreferenceScreen(
|
|
getActivity());
|
|
setPreferenceScreen(preferenceScreen);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
|
super.onViewCreated(view, savedInstanceState);
|
|
|
|
SettingsActivity activity = (SettingsActivity) getActivity();
|
|
mSwitchBar = activity.getSwitchBar();
|
|
mToggleSwitch = mSwitchBar.getSwitch();
|
|
|
|
onProcessArguments(getArguments());
|
|
|
|
// Show the "Settings" menu as if it were a preference screen
|
|
if (mSettingsTitle != null && mSettingsIntent != null) {
|
|
PreferenceScreen preferenceScreen = getPreferenceScreen();
|
|
Preference settingsPref = new Preference(preferenceScreen.getContext());
|
|
settingsPref.setTitle(mSettingsTitle);
|
|
settingsPref.setIconSpaceReserved(true);
|
|
settingsPref.setIntent(mSettingsIntent);
|
|
preferenceScreen.addPreference(settingsPref);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onActivityCreated(Bundle savedInstanceState) {
|
|
super.onActivityCreated(savedInstanceState);
|
|
installActionBarToggleSwitch();
|
|
}
|
|
|
|
@Override
|
|
public void onDestroyView() {
|
|
super.onDestroyView();
|
|
|
|
removeActionBarToggleSwitch();
|
|
}
|
|
|
|
protected abstract void onPreferenceToggled(String preferenceKey, boolean enabled);
|
|
|
|
protected void onInstallSwitchBarToggleSwitch() {
|
|
// Implement this to set a checked listener.
|
|
}
|
|
|
|
protected void onRemoveSwitchBarToggleSwitch() {
|
|
// Implement this to reset a checked listener.
|
|
}
|
|
|
|
/**
|
|
* Get the res id for static preference xml for this fragment.
|
|
*/
|
|
protected int getPreferenceScreenResId() {
|
|
return -1;
|
|
}
|
|
|
|
private void installActionBarToggleSwitch() {
|
|
mSwitchBar.show();
|
|
onInstallSwitchBarToggleSwitch();
|
|
}
|
|
|
|
private void removeActionBarToggleSwitch() {
|
|
mToggleSwitch.setOnBeforeCheckedChangeListener(null);
|
|
onRemoveSwitchBarToggleSwitch();
|
|
mSwitchBar.hide();
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
getActivity().setTitle(title);
|
|
}
|
|
|
|
protected void onProcessArguments(Bundle arguments) {
|
|
// Key.
|
|
mPreferenceKey = arguments.getString(AccessibilitySettings.EXTRA_PREFERENCE_KEY);
|
|
|
|
// Enabled.
|
|
if (arguments.containsKey(AccessibilitySettings.EXTRA_CHECKED)) {
|
|
final boolean enabled = arguments.getBoolean(AccessibilitySettings.EXTRA_CHECKED);
|
|
mSwitchBar.setCheckedInternal(enabled);
|
|
}
|
|
|
|
// Title.
|
|
if (usePreferenceScreenTitle()
|
|
&& arguments.containsKey(AccessibilitySettings.EXTRA_RESOLVE_INFO)) {
|
|
ResolveInfo info = arguments.getParcelable(AccessibilitySettings.EXTRA_RESOLVE_INFO);
|
|
getActivity().setTitle(info.loadLabel(getPackageManager()).toString());
|
|
} else if (arguments.containsKey(AccessibilitySettings.EXTRA_TITLE)) {
|
|
setTitle(arguments.getString(AccessibilitySettings.EXTRA_TITLE));
|
|
}
|
|
|
|
// Summary.
|
|
if (arguments.containsKey(AccessibilitySettings.EXTRA_SUMMARY)) {
|
|
final CharSequence summary = arguments.getCharSequence(
|
|
AccessibilitySettings.EXTRA_SUMMARY);
|
|
mFooterPreferenceMixin.createFooterPreference().setTitle(summary);
|
|
}
|
|
}
|
|
}
|