Android EditText不自动弹出软键盘

来源:互联网 发布:猪八戒考试题库软件 编辑:程序博客网 时间:2024/04/30 04:24
方法一
在mainfest文件设置activity属性
android:windowSoftInputMode="stateHidden"

方法二
在布局文件中使焦点在其他控件上
<TextView
   android:focusable="true"
   android:focusableInTouchMode="true"
   android:layout_width="wrap_content"
   android:layout_height="0dp">
   <requestFocus/>
</TextView>
0 0
原创粉丝点击