是否可以向现有的Preferences元素添加自定义属性,例如以下myFormat
?
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<EditTextPreference
android:defaultValue="0.3"
myFormat="Format 123"
android:inputType="numberDecimal"
android:key="steering_threshold" />
</PreferenceScreen>
或者我是否需要按照here说明创建自定义元素,如下所示MyCustomPreference
?
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<com.example.yourpackage.MyCustomElement
[...]