模拟Android偏好类别外观/感觉

Pre*_*ier 10 user-interface android android-preferences

我喜欢Android偏好类别中的标题栏样式.

在我的活动中(不是a PreferenceActivity)我如何使用相同的风格?

Jem*_*ems 21

由于我在最后几个小时试图回答这个老问题,我会在这里为其他人做.事实证明,首选项类型使用的资源是listSeparatorTextViewStyle.

你这样使用它:

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello, World"
style="?android:attr/listSeparatorTextViewStyle"/>
Run Code Online (Sandbox Code Playgroud)

使用style="?android:attr/preferenceCategoryStyle"不起作用.