Android 列表视图 - 人机界面指南
对于列表视图中每个单元格的 dp 大小,是否有任何建议? (假设列表视图只有一行文本)?
谢谢,
泰贾
Is there any recommendation on how big each cell has to be in terms of dp in a listview. (Assume a list view with just one line of text)?
Thanks,
Teja
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果“每个单元格有多大”意味着行高,那么
android:layout_height="?android:attr/listPreferredItemHeight"
应该有帮助
if "how big each cell" means row height then
android:layout_height="?android:attr/listPreferredItemHeight"
should help
除了塞尔文的回答。
如果你想从源代码中获取它:
Addition to Selvin's answer.
If you want it from source code:
通过代码:
R.attr.listPreferredItemHeight 只是资源 id 而不是值。
这有效: Android:如何获取“listPreferredItemHeight”的值“代码中的属性?
Via Code:
R.attr.listPreferredItemHeight is only the resource id and not the value.
this works: Android: how to get value of "listPreferredItemHeight" attribute in code?