gpt4 book ai didi

android - EditText textAllCaps 不适用于 textIsSelectable

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:15:56 25 4
gpt4 key购买 nike

我的布局中有一个 TextView:

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="true"
android:text="Hello"
/>

textAllCaps 工作正常,没问题。但是当我尝试通过添加 textIsSelectable

使文本可选时
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="true"
android:textIsSelectable="true"
android:text="Hello"
/>

textAllCaps 不工作。看起来这两个属性不能一起正常工作。你有什么建议为什么会发生以及如何使文本全部大写和可选(我对最清晰的方式感兴趣,而不是设置文本更改监听器和手动大写文本)。如果有任何建议,我将不胜感激。

最佳答案

你能在 Activity 中试试这个吗:

edittext.setFilters(new InputFilter[] {new InputFilter.AllCaps()});

关于android - EditText textAllCaps 不适用于 textIsSelectable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35037310/

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