【android】禁止EditText自动获取焦点

来源:互联网 发布:遭受网络攻击 损失 编辑:程序博客网 时间:2024/06/14 00:52

有时候在页面加载的时候,我们需要默认EditText不自动获取焦点,以防止自动弹出输入法

解决方法如下:

EditText的父布局中加入以下属性:

android:focusable="true"android:focusableInTouchMode="true"
示例:

<LinearLayout    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    android:focusable="true"    android:focusableInTouchMode="true">    <EditText        android:layout_width="match_parent"        android:layout_height="wrap_content" /></LinearLayout>


原创粉丝点击