Edittext android automatic focus

烈酒焚心 提交于 2019-11-30 23:38:56

问题


I have an issue when the activity starts, android automatically places focus on the first edittext. How do I prevent android from doing that?


回答1:


Have a look here

Or you could just hide the keyboard, focus remains on the EditText upon starting the activity:

android:windowSoftInputMode="stateHidden"



回答2:


use setFocusable (boolean focusable) to prevent. http://developer.android.com/reference/android/view/View.html#setFocusable(boolean)




回答3:


Three ways to solve this..

  1. Set these attributes to the parent..

And now, when activity starts this layout getting default focus.

Also we can remove focus from children views in runtime (e.g. after finishing child editing):

findViewById(R.id.mainLayout).requestFocus(); or

Look in the AndroidManifest.xml element.

android:windowSoftInputMode="stateHidden"

It always hide key board when entering the activity.



来源:https://stackoverflow.com/questions/5550429/edittext-android-automatic-focus

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!