在android中的ListView中添加标题
我需要在列表视图中添加标题,并且标题应该始终显示,甚至滚动列表。
安卓列表视图可以吗?
I need add header in my listview and header should always displayed even scrolling list.
Is it possible in android list view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对我有用的解决方案是创建一个 TableLayout,其中一行包含标题,一行包含列表,如下所示:
请确保 ListView 将 @android:id/list 作为 ID。
The solution that works for me is to create a TableLayout that has a row with the heading and a row with the list like this:
Please make sure that the ListView has @android:id/list as the ID.
您可以在列表视图中添加标题,如下所示:
you can add header in list view like this:
是的,这就是我所做的:
对于带有
ListActivity
或 < code>ListFragment,您的布局必须包含ListView
,且android:id
属性设置为@android:id/list
。1)
main_layout.xml
:用于列表每行的自定义布局,
2)
custom_list_row.xml
:3)
ListActivity
:如果您需要它检查:“将粘性(固定)页眉/页脚附加到列表视图"
Yes, here is what i 've done:
For a custom layout with
ListActivity
orListFragment
, your layout must contain aListView
with theandroid:id
attribute set to@android:id/list
.1)
main_layout.xml
:For custom layout for each row of list,
2)
custom_list_row.xml
:3)
ListActivity
:In case you need it check: "Attaching a sticky (fixed) header/footer to a listview"
做一件事。在列表视图上方放置一个 TextView 并将文本设置为标题。它可以满足您的需求。
Do one thing. Put one TextView just above the list view and set text as your header .It will achieve your need.