我想让EditTextPreference不可编辑(例如,当你单击Settings页面中的项目时没有任何反应).我怎么做?
这是我的代码:
<PreferenceCategory android:title="My Account" > <EditTextPreference android:clickable="false" android:focusable="false" android:focusableInTouchMode="false" android:key="username_pref" android:summary=" " android:title="Username" > </EditTextPreference> </PreferenceCategory>
解决方法
您可以以编程方式或.xml方式执行此操作.
XML:
<EditTextPreference android:enabled="false" > </EditTextPreference>
编程方式:
getPreferenceScreen().findPreference("yourpref").setEnabled(false);
来自Android文档:
“If disabled,the preference will not handle clicks.”