在页面中存在EditText的时候,进入默认会弹出键盘,解决方式:
1.设置windowSoftInputMode属性:
adjustUnspecified|stateHidden
2.代码里面设置:
getWindow().setSoftInputMode( WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
3.另外一个方式:
<LinearLayout
android:layout_width="0px"
android:layout_height="0px"
android:focusable="true"
android:focusableInTouchMode="true"/>
用于记录。
网友评论