Android EditText.setError无法正常工作
作者:互联网
如何在EditText中显示setError的文本错误不可聚焦?用户不要修改此EditText非常重要,它将针对应用程序进行修改.也许我有另一种选择不同于focusable = false?
现在,我拥有它:
<EditText
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:ems="10"
android:focusable="false"
android:inputType="text"
android:onClick="onClick" />
非常感谢!
解决方法:
最后我认为这是不可能的……因为第一个必要性是阻止文本,使用focusable = false或使用TextView来执行它,并且它还会阻止功能setError.
具有focusable = false的editText我可以得到一个右绘图(默认的红色感叹号)但没有文本.出于这个原因,我终于用Toast添加了文本.
这不完全是我想要的,但它是最相似的.
谢谢你的帮助!
标签:android,android-edittext,xml,focusable 来源: https://codeday.me/bug/20190708/1402574.html