Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个EditTextPreference(键“用户名”)。我想在方法改变时调用它。我阅读了PreferenceActivity和EditTextPreference的文档,但没有找到相关的解决方案。
EditTextPreference
有什么办法吗?
Preference userNamePref = findPreference("userfirstname"); userNamePref.setOnPreferenceChangeListener(new OnPreferenceChangeListener() { @Override public boolean onPreferenceChange(Preference preference, Object newValue) { //do something return true; } });