解决方案 在父级节点获取焦点
及
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true"> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
本文介绍了一种通过设置父级LinearLayout的属性来防止EditText在界面加载时自动获取焦点的方法。具体做法是在LinearLayout中设置android:focusable=true 和 android:focusableInTouchMode=true。
2116

被折叠的 条评论
为什么被折叠?



