Android禁止软键盘自动弹出

在当前布局文件里添加一个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();

 

posted @ 2013-08-29 15:57  BetterMan-  阅读(598)  评论(0编辑  收藏  举报