您的位置:首页 > 移动开发 > Android开发

Android禁止软键盘自动弹出

2013-08-29 15:57 316 查看
在当前布局文件里添加一个TextView控件

<TextView
android:id="@+id/config_hidden"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true" />


在Activity里添加

TextView config_hidden = (TextView) this.findViewById(R.id.config_hidden);
config_hidden.requestFocus();
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: