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

时间:2010-07-28 05:26:19

标签: android user-interface android-preferences

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

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

2 个答案:

答案 0 :(得分:21)

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

你这样使用它:

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello, World"
style="?android:attr/listSeparatorTextViewStyle"/>

使用style="?android:attr/preferenceCategoryStyle"无效。

答案 1 :(得分:1)

主要布局很可能是带有LinearLayout的ScrollView。至于个人布局,我相信(只是在查看文档后猜测)你可以使用android.R.attr中的各种属性 - 请看这里:http://developer.android.com/reference/android/R.attr.html。有一些属性,如preferenceCategoryStyle,preferenceStyle等。您可以将任何样式应用于任何视图。