對不起,也許是一個愚蠢的問題。EditTextPreference
我有EditTextPreference ...如何檢查他的文本是否爲空?
public void onSharedPreferenceChanged(SharedPreferences sharedPreference,
String key) {
String editorText= (editTextPreference.getText()).trim();
if (editorText== "") {
editorText.setText("Something");
}
}
那不行....
我應該使用等於......但不是== ..sorry – Jim 2011-03-23 10:24:16