Back to project page android-quiz-php.
The source code is released under:
Copyright (c) 2014, Fabricio Bedeschi All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are me...
If you think the Android project android-quiz-php listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.quiz.php.ui; // w ww . j a v a2 s. c o m import android.content.Context; import android.content.SharedPreferences; import android.content.res.TypedArray; import android.os.Parcel; import android.os.Parcelable; import android.preference.DialogPreference; import android.preference.Preference; import android.preference.PreferenceManager; import android.util.AttributeSet; import android.view.View; import android.widget.NumberPicker; import android.widget.TextView; import com.quiz.php.R; /** * A {@link DialogPreference} that provides a user with the means to select an integer from a {@link NumberPicker}, and persist it. * * @author lukehorvat * */ public class NumberPickerDialogPreference extends DialogPreference { private static final int DEFAULT_MIN_VALUE = 1; private static final int DEFAULT_MAX_VALUE = 100; private static final int DEFAULT_VALUE = 70; private final Context mContext; private int mMinValue; private int mMaxValue; private int mValue; private NumberPicker mNumberPicker; public NumberPickerDialogPreference(Context context) { this(context, null); } public NumberPickerDialogPreference(Context context, AttributeSet attrs) { super(context, attrs); mContext = context; SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext); // get attributes specified in XML TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.NumberPickerDialogPreference, 0, 0); try { setMinValue(a.getInteger(R.styleable.NumberPickerDialogPreference_min, DEFAULT_MIN_VALUE)); setMaxValue(a.getInteger(R.styleable.NumberPickerDialogPreference_android_max, DEFAULT_MAX_VALUE)); } finally { a.recycle(); } // set layout setDialogLayoutResource(R.layout.preference_number_picker_dialog); setPositiveButtonText(android.R.string.ok); setNegativeButtonText(android.R.string.cancel); setDialogIcon(null); setSummary(getFormattedSummary(prefs.getInt(SettingsActivity.PREF_NUM_QUESTIONS, DEFAULT_VALUE))); setOnPreferenceChangeListener(new OnPreferenceChangeListener() { @Override public boolean onPreferenceChange(Preference pref, Object value) { pref.setSummary(getFormattedSummary( (Integer) value)); return true; } }); } @Override protected void onSetInitialValue(boolean restore, Object defaultValue) { setValue(restore ? getPersistedInt(DEFAULT_VALUE) : (Integer) defaultValue); } @Override protected Object onGetDefaultValue(TypedArray a, int index) { return a.getInt(index, DEFAULT_VALUE); } @Override protected void onBindDialogView(View view) { super.onBindDialogView(view); TextView dialogMessageText = (TextView) view.findViewById(R.id.text_dialog_message); dialogMessageText.setText(getDialogMessage()); mNumberPicker = (NumberPicker) view.findViewById(R.id.number_picker); mNumberPicker.setMinValue(mMinValue); mNumberPicker.setMaxValue(mMaxValue); mNumberPicker.setValue(mValue); } public int getMinValue() { return mMinValue; } public void setMinValue(int minValue) { mMinValue = minValue; setValue(Math.max(mValue, mMinValue)); } public int getMaxValue() { return mMaxValue; } public void setMaxValue(int maxValue) { mMaxValue = maxValue; setValue(Math.min(mValue, mMaxValue)); } public int getValue() { return mValue; } public void setValue(int value) { value = Math.max(Math.min(value, mMaxValue), mMinValue); if (value != mValue) { mValue = value; persistInt(value); notifyChanged(); } } public String getFormattedSummary(){ return String.format("%d questions", mValue); } @Override protected void onDialogClosed(boolean positiveResult) { super.onDialogClosed(positiveResult); // when the user selects "OK", persist the new value if (positiveResult) { int numberPickerValue = mNumberPicker.getValue(); if (callChangeListener(numberPickerValue)) { setValue(numberPickerValue); } } } @Override protected Parcelable onSaveInstanceState() { // save the instance state so that it will survive screen orientation changes and other events that may temporarily destroy it final Parcelable superState = super.onSaveInstanceState(); // set the state's value with the class member that holds current setting value final SavedState myState = new SavedState(superState); myState.minValue = getMinValue(); myState.maxValue = getMaxValue(); myState.value = getValue(); return myState; } @Override protected void onRestoreInstanceState(Parcelable state) { // check whether we saved the state in onSaveInstanceState() if (state == null || !state.getClass().equals(SavedState.class)) { // didn't save the state, so call superclass super.onRestoreInstanceState(state); return; } // restore the state SavedState myState = (SavedState) state; setMinValue(myState.minValue); setMaxValue(myState.maxValue); setValue(myState.value); super.onRestoreInstanceState(myState.getSuperState()); } private static class SavedState extends BaseSavedState { int minValue; int maxValue; int value; public SavedState(Parcelable superState) { super(superState); } public SavedState(Parcel source) { super(source); minValue = source.readInt(); maxValue = source.readInt(); value = source.readInt(); } @Override public void writeToParcel(Parcel dest, int flags) { super.writeToParcel(dest, flags); dest.writeInt(minValue); dest.writeInt(maxValue); dest.writeInt(value); } @SuppressWarnings("unused") public static final Parcelable.Creator<SavedState> CREATOR = new Parcelable.Creator<SavedState>() { @Override public SavedState createFromParcel(Parcel in) { return new SavedState(in); } @Override public SavedState[] newArray(int size) { return new SavedState[size]; } }; } public String getFormattedSummary(int n) { String questions = mContext.getResources() .getQuantityString(R.plurals.question, n, n); return questions; } }