一、场景
在开发过程中,使用TextInputLayout,进行账户密码的输入时,遇到了edittext自动捕获焦点的问题,这种情况不是很友好,因此特意检索到一种解决EditText不自动捕获焦点的方法。
二、方法
在布局文件的头部加入。
android:focusable="true"
android:focusableInTouchMode="true"
一、场景
在开发过程中,使用TextInputLayout,进行账户密码的输入时,遇到了edittext自动捕获焦点的问题,这种情况不是很友好,因此特意检索到一种解决EditText不自动捕获焦点的方法。
二、方法
在布局文件的头部加入。
android:focusable="true"
android:focusableInTouchMode="true"