列表首选项字体大小
我正在使用 ListPreference 让用户从列表中选择一个位置。
某些条目因太长的字符串而被截断。
我正在寻找最简单的方法来解决这个问题。一种变体是仅使用较小的字体大小。
如果开销不是太大,我还会将显示的文本拆分为不同行上的 2 个字符串。
I'm using ListPreference to have the user select a location from a list.
Some of the entries are cut off bcs of too long strings.
I'm looking for the simplest possible way to work around this. One variant would be to just use a smaller font size.
In case it's not too much overhead, I would additionally split the text shown into 2 strings on different lines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展 ListPreference 并重写 onCreateView() ,如下所示:
Extend ListPreference and override onCreateView() like this: