在做一个搜索功能时,刚进入界面,edittext直接自动获取焦点,这显然不是我想要的。
那么问题来了:如何关闭EditText自动获取焦点的?
尝试了好几个方法,在Java代码添加focus控制,在xml文件中的EditText控件中添加focusable约束等,都不适用于我的这个问题。
解决办法:在xml文件中EditText外框架里添加上android:focusable="true" android:focusableInTouchMode="true",这样问题就解决了。
- <RelativeLayout
- android:id="@+id/title"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:background="#F8F8FF"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:paddingBottom="6dp" >
- <EditText
- android:id="@+id/search"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="5dp"
- android:layout_marginTop="5dp"
- android:layout_toLeftOf="@+id/auto_add"
- android:background="@drawable/rounded_edittext"
- android:drawableLeft="@drawable/search"
- android:ems="10"
- android:hint="@string/hint_search"
- android:imeOptions="actionSearch"
- android:inputType="text"
- android:singleLine="true"
- android:textSize="15sp" >
- </EditText>
本文转自 一点点征服 博客园博客,原文链接:http://www.cnblogs.com/ldq2016/p/8547665.html
,如需转载请自行联系原作者