我正在编写自定义EditTextPreference。
在我的CustomEditTextPreference中使用此代码:
@Override
protected void onDialogClosed(boolean shouldSave) {
if (shouldSave) {
String sValue = getText();
value = Float.parseFloat(sValue);
peristValue();
}
}
sValue为空。如何从编辑中获取值呢?
答案 0 :(得分:1)