美文网首页
另外一种默认不弹出键盘的方式

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

作者: 心逝蓝殇 | 来源:发表于2017-11-21 13:37 被阅读0次

在页面中存在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"/>

用于记录。

相关文章

网友评论

      本文标题:另外一种默认不弹出键盘的方式

      本文链接:https://www.haomeiwen.com/subject/uatwvxtx.html