1 package de.hacksaar.andtuer;
3 import android.content.Context;
4 import android.preference.EditTextPreference;
5 import android.util.AttributeSet;
7 public class IntegerTextPreference extends EditTextPreference {
8 public IntegerTextPreference(Context context, AttributeSet attrs, int defStyle) {
9 super(context, attrs, defStyle);
12 public IntegerTextPreference(Context context, AttributeSet attrs) {
13 super(context, attrs);
16 public IntegerTextPreference(Context context) {
21 protected String getPersistedString(String defaultReturnValue) {
22 return String.valueOf(getPersistedInt(-1));
26 protected boolean persistString(String value) {
27 return persistInt(Integer.valueOf(value));