减小列表项的大小?
我使用 android.R.layout.simple_list_item_multiple_choice 在一个列表视图中列出了一些内容,它需要核心列表视图。
而且,我无法减小其项目的字体大小。我怎样才能减少它?我已经在 XML 文件中搜索了 size 元素,但是还没有找到。有人知道这个问题的答案吗?请在此处查看我的结果
提前致谢。
I've listed something in one listview using android.R.layout.simple_list_item_multiple_choice
It takes core listview.
And, i can't decrease the font size of their items. How can i decrease that? I've search the size element in XML files but, i've not found yet. Anyone know the answer for this? See my result here
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 listItem 中添加 textView,您可以控制字体 Size ,通过
EDIT
我看到您正在使用标准列表项。然后将
simple_list_item_multiple_choice.xml
从 android 资源复制到您自己的自定义 xml,更改 size 属性,并在 listAdapter 中使用它。您可以从此处获取资源
If you are adding the textViews in the listItem, you can control the font Size , with
EDIT
i see you are using a standard list item. then copy the
simple_list_item_multiple_choice.xml
from android resources to your own custom xml, change the size attribute, and use it in the listAdapter.you can get the resources from here