在浏览器中,我们点击搜索框全文被选中。喜欢如何在Android EditText中启用它。单击EditText时,其中的整个文本被选中。 这是我的第一个问题所以请不要批评它。
答案 0 :(得分:3)
editText.setSelectAllOnFocus(true);
答案 1 :(得分:2)
您可以在EditText
android:selectAllOnFocus="true"
答案 2 :(得分:1)
如果文本是可选的,请在视图获得焦点时全部选择。
可能是
boolean
值,例如" true"或" false"。
来自XML
android:selectAllOnFocus="true"
FROM java
YourEditText.setSelectAllOnFocus(true);