如何在ListView中绘制水平线?
有没有比定义固定高度和黑色背景的布局更好的方法来绘制黑色水平线?
Is there any better way to draw a black horizontal line than defining layout with fixed height and black background?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ListView 允许您定义可绘制的分隔线。有关详细信息,请参阅 ListView 上的 Android 文档。
分隔线将绘制在列表中的每个项目之后,而无需您对其进行任何操作。您可以使用可绘制对象或颜色作为分隔线,还可以指定整个列表的分隔线高度。
The ListView allows you to define a divider drawable. See the android documentation on the ListView for more information.
The Divider will be drawn after each item in your list without the need for you to do anything about it. You can use a drawable or a color as the divider and you can also specify the divider height for the whole list.
API 演示 List5.java< /a> 使用
android.R.layout.simple_expandable_list_item_1
演示包含分隔符API Demos List5.java demonstrates including separators, using
android.R.layout.simple_expandable_list_item_1