我有一个 EditText,里面有一些虚拟文本.当用户点击它时,我希望它被选中,这样当用户开始输入时,虚拟文本就会被删除.
I have an EditText with some dummy text in it. When the user clicks on it I want it to be selected so that when the user starts typing the dummy text gets deleted.
我怎样才能做到这一点?
How can I achieve this?
你可以在你的 main.xml
文件中试试:
You can try in your main.xml
file:
android:selectAllOnFocus="true"
或者,在 Java 中,使用
Or, in Java, use
editText.setSelectAllOnFocus(true);
这篇关于获得焦点时选择 EditText 内的所有文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!