I want to make my EditTextPreference not editable (as in, nothing happens when you click on the item in the Settings page). How do I do that?
Here is my code:
<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>