首页 > 系统 > Android > 正文

android EditText自动获取焦点

2019-11-09 17:47:41
字体:
来源:转载
供稿:网友

在Android布局文件中,当有EditText时,该控件会自动获取焦点,在页面打开时,EditText中会出现光标,如何修改EditText默认获取焦点的方法如下:

在EditText所在的父类容器中,设置两个属性为true即可

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

栗子:

<LinearLayout android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" android:focusable="true" android:focusableInTouchMode="true> <EditText android:layout_height="match_parent" android:layout_width="match_parent"/></LinearLayout>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表