另外一种默认不弹出键盘的方式

在页面中存在EditText的时候,进入默认会弹出键盘,解决方式:

1.设置windowSoftInputMode属性:

adjustUnspecified|stateHidden

2.代码里面设置:

getWindow().setSoftInputMode( WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

3.另外一个方式:

android:layout_width="0px"

android:layout_height="0px"

android:focusable="true"

android:focusableInTouchMode="true"/>

用于记录。

你可能感兴趣的:(另外一种默认不弹出键盘的方式)