在使用EditText的时候如果界面中有EditText的话,刚打开这个界面的时候第一个EditText就会自动获取焦点。如果是想要用EditText监听焦点的话。那么就会捣乱了,监听的逻辑。或者在其它操作的时候也可能需要不让EditText自动获取焦点
1.其它方法
如何让EditText不自动获取焦点,笔者搜索了一下发现有几篇文章都说在第一个EditText前写一个LinearLayout,然后在里面使用<requestFocus />
不知道是笔者的使用方法有问题还是其它原因。反正这个办法没效果。
2.亲测有用的方法
在EditText的父布局添加两句代码:
android:focusable="true"
android:focusableInTouchMode="true"
就可以让EditText不自动获取焦点了:
<LinearLayout
android:focusableInTouchMode="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true">