我想要一个自定义首选项屏幕。
我可以设置ListView
的背景颜色和左右两边的填充。但是,我怎样才能看到边框的颜色,我的截图中标记为红色?
我的示例首选项文件(preferences.xml)
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="@string/pref_category"
android:key="catConnection">
<CheckBoxPreference
android:title="@string/pref_warning_title"
android:summary="@string/pref_warning_desc"
android:defaultValue="true"
android:key="warning"
/>
</PreferenceCategory>
</PreferenceScreen>
如您所见,它是一个普通的偏好文件。
如果有人可以发布截图和工作样式文件,那就太好了。