3

我想在我的列表视图上实现一个节标题。可以在 android 的设置菜单中找到的那个。有没有不使用第三方资源的本地方式来实现这一点?谢谢!

带有部分标题的 Android 上的设置菜单。示例图像。

在此处输入图像描述

安卓设置

4

1 回答 1

5

使用这个作为标题和上面的列表视图

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Hello, World"
    style="?android:attr/listSeparatorTextViewStyle"/>
于 2013-09-02T23:25:58.840 回答