Android 列表视图 - 人机界面指南

发布于 2024-11-01 21:05:42 字数 70 浏览 0 评论 0原文

对于列表视图中每个单元格的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

迷荒 2024-11-08 21:05:42

如果“每个单元格有多大”意味着行高,那么

android:layout_height="?android:attr/listPreferredItemHeight"

应该有帮助

if "how big each cell" means row height then

android:layout_height="?android:attr/listPreferredItemHeight"

should help

扶醉桌前 2024-11-08 21:05:42

除了塞尔文的回答。

如果你想从源代码中获取它:

R.attr.listPreferredItemHeight

Addition to Selvin's answer.

If you want it from source code:

R.attr.listPreferredItemHeight
蓝海 2024-11-08 21:05:42

通过代码:

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文