Android偏好类别

时间:2012-09-27 13:47:43

标签: android android-layout android-preferences

您好我想在TextView上使用preferencecategory(带下划线等)样式,我应该在xml上实现哪种样式/设置?

谢谢

1 个答案:

答案 0 :(得分:1)

您可以做的是使用 android:layout

为PreferenceCategory设置自定义布局
<PreferenceCategory android:layout="@layout/prefcat_layout">
    ...
</PreferenceCategory>

prefcat_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/underlined_title"/>

</LinearLayout>

strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="underlined_title"> <u>Underlined Application preferences title</u></string>
</resources>