项目中EditText 在布局下方 每次进入页面 页面直接跑到下面 焦点被EditText抢夺
在ScrollView 下的LinearLayout 下添加属性
android:focusable="true"
android:focusableInTouchMode="true"
即可解决
项目中EditText 在布局下方 每次进入页面 页面直接跑到下面 焦点被EditText抢夺
在ScrollView 下的LinearLayout 下添加属性
android:focusable="true"
android:focusableInTouchMode="true"
即可解决