我想更改我的 EditPreferences 中的 inputType:
<PreferenceCategory android:title="Test" >
<EditTextPreference
android:key="@string/pref_delay"
android:summary="Set the delay"
android:title="preview_delay"
android:defaultValue="13"
/>
</PreferenceCategory>
<PreferenceCategory android:title="Similarity List" >
<EditTextPreference
android:key="@string/pref_songcount"
android:summary="Set the number of songs)"
android:title="Songcount"
android:defaultValue="10" />
<EditTextPreference
android:key="@string/pref_similarity"
android:summary="Enter the minimum percentage"
android:title="Similarity"
android:defaultValue="0" />
</PreferenceCategory>
android:inputType="XYZ" 不适用于 EditPreferences。
我怎么还能这样做?