4

是否可以向现有的 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>

或者我是否需要按照此处的说明创建自定义元素,如下所示MyCustomPreference

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
    <com.example.yourpackage.MyCustomElement
    [...]
4

0 回答 0