EditText取消自动获取焦点

在刚进入ui的时候,如果UI中有EDITTEXT,它会自动获取焦点弹出键盘,有的时候我们不需要这样.

就要取消它自动获取焦点.

 只要在它属于的LinearLayout中加上下面两句就可以:

android:focusable = "true"
android:focusableInTouchMode = "true"
 

猜你喜欢

转载自bgj.iteye.com/blog/1752931