summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/settings/FontStylePreference.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/settings/FontStylePreference.java')
-rw-r--r--src/com/android/launcher3/settings/FontStylePreference.java142
1 files changed, 0 insertions, 142 deletions
diff --git a/src/com/android/launcher3/settings/FontStylePreference.java b/src/com/android/launcher3/settings/FontStylePreference.java
deleted file mode 100644
index 50df4b280..000000000
--- a/src/com/android/launcher3/settings/FontStylePreference.java
+++ /dev/null
@@ -1,142 +0,0 @@
-package com.android.launcher3.settings;
-
-import android.app.AlertDialog;
-import android.content.Context;
-import android.content.DialogInterface;
-import android.graphics.Typeface;
-import android.preference.ListPreference;
-import android.text.TextUtils;
-import android.util.AttributeSet;
-import android.view.LayoutInflater;
-import android.view.View;
-import android.view.ViewGroup;
-import android.widget.*;
-import com.android.launcher3.R;
-
-import java.util.Arrays;
-import java.util.List;
-
-public class FontStylePreference extends ListPreference {
- private String mValue;
- public int mClickedDialogEntryIndex;
- private boolean mValueSet;
-
- public FontStylePreference(Context context, AttributeSet attrs) {
- super(context, attrs);
- }
-
- @Override
- protected void onPrepareDialogBuilder(AlertDialog.Builder builder) {
- if (getEntries() == null || getEntryValues() == null) {
- throw new IllegalStateException(
- "ListPreference requires an entries array and an entryValues array.");
- }
-
- mClickedDialogEntryIndex = getValueIndex();
- builder.setSingleChoiceItems(new FontStyleAdapter(getContext()), mClickedDialogEntryIndex,
- new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- mClickedDialogEntryIndex = which;
-
- /*
- * Clicking on an item simulates the positive button
- * click, and dismisses the dialog.
- */
- FontStylePreference.this.onClick(dialog, DialogInterface.BUTTON_POSITIVE);
- dialog.dismiss();
- }
- });
-
- /*
- * The typical interaction for list-based dialogs is to have
- * click-on-an-item dismiss the dialog instead of the user having to
- * press 'Ok'.
- */
- builder.setPositiveButton(null, null);
- }
-
- @Override
- protected void onDialogClosed(boolean positiveResult) {
- super.onDialogClosed(positiveResult);
-
- if (positiveResult && mClickedDialogEntryIndex >= 0 && getEntryValues() != null) {
- String value = getEntryValues()[mClickedDialogEntryIndex].toString();
- if (callChangeListener(value)) {
- setValue(value);
- }
- }
- }
-
- @Override
- protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
- setValue(restoreValue ? getPersistedString(mValue) : (String) defaultValue);
- }
-
- /**
- * Sets the value of the key. This should be one of the entries in
- * {@link #getEntryValues()}.
- *
- * @param value The value to set for the key.
- */
- @Override
- public void setValue(String value) {
- // Always persist/notify the first time.
- final boolean changed = !TextUtils.equals(mValue, value);
- if (changed || !mValueSet) {
- mValue = value;
- mValueSet = true;
- persistString(value);
- if (changed) {
- notifyChanged();
- }
- }
- }
-
- /**
- * Returns the value of the key. This should be one of the entries in
- * {@link #getEntryValues()}.
- *
- * @return The value of the key.
- */
- @Override
- public String getValue() {
- return mValue;
- }
-
- private int getValueIndex() {
- return findIndexOfValue(mValue);
- }
-
- private class FontStyleAdapter extends ArrayAdapter<CharSequence> {
- private LayoutInflater mInflater;
- private List<CharSequence> mEntries;
- private List<CharSequence> mValues;
-
- public FontStyleAdapter(Context context) {
- super(context, -1, getEntryValues());
-
- mInflater = LayoutInflater.from(context);
- mEntries = Arrays.asList(getEntries());
- mValues = Arrays.asList(getEntryValues());
- }
-
- @Override
- public View getView(int position, View convertView, ViewGroup parent) {
- CheckedTextView textView;
-
- if (convertView == null) {
- textView = (CheckedTextView) mInflater.inflate(R.layout.list_item_checkable, parent, false);
- } else {
- textView = (CheckedTextView) convertView;
- }
-
- if (textView != null) {
- textView.setText(mEntries.get(position));
- textView.setTag(mValues.get(position));
- textView.setTypeface(Typeface.create((String) mValues.get(position), Typeface.NORMAL));
- }
-
- return textView;
- }
- }
-}