在我的Android應用程序,我使用了一個名爲「IntEditTextPreference」類。當我希望用戶將首選項作爲整數引入時,將使用此類。NumberFormatException異常與IntEditTextPreference
但它有一個問題。當用戶將該字段留空並按下「ok」時,會引發NumberFormatException。
什麼我可以做,以避免用戶按「OK」時,該字段爲空?
謝謝!
public class IntEditTextPreference extends EditTextPreference
{
public IntEditTextPreference(Context context)
{
super(context);
}
public IntEditTextPreference(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public IntEditTextPreference(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
}
@Override
protected String getPersistedString(String defaultReturnValue)
{
return String.valueOf(getPersistedInt(-1));
}
@Override
protected boolean persistString(String value)
{
return persistInt(Integer.valueOf(value));
}
}
使用默認值 – CocoNess
哪裏是persistInt方法? –