Open TindleWei opened 9 years ago
android:windowSoftInputMode="adjustResize|stateHidden "
默认EditText不自动获取焦点
其父控件
android:focusable="true"
android:focusableInTouchMode="true"
或者 layout_outer.setFocusable(true); layout_outer.setFocusableInTouchMode(true);
解决方法1: 在manifest的activity节点加代码
<activity android:windowSoftInputMode="adjustResize" . . . >