gpt4 book ai didi

android - ListPreference 字体大小

转载 作者:行者123 更新时间:2023-11-29 18:18:23 25 4
gpt4 key购买 nike

我正在使用 ListPreference 让用户从列表中选择一个位置。
一些条目被截断了太长字符串的 bcs。
我正在寻找最简单的方法来解决这个问题。一种变体是只使用较小的字体大小。
如果开销不是太大,我会另外将显示的文本拆分为不同行上的 2 个字符串。

最佳答案

像这样扩展 ListPreference 并覆盖 onCreateView():

    @Override
protected View onCreateView(ViewGroup parent) {
View view = super.onCreateView(parent);
((TextView) view.findViewById(android.R.id.title)).setSingleLine(false);
((TextView) view.findViewById(android.R.id.title)).setMaxLines(2);
((TextView) view.findViewById(android.R.id.summary)).setMaxLines(10);
return view;
}

关于android - ListPreference 字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6898853/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com