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