码迷,mamicode.com
首页 > 移动开发 > 详细

edittext禁止android软键盘弹出

时间:2015-07-03 10:39:32      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:android   edittext   软键盘   

1.

EditText ed=(EditText) findViewById(R.id.test);

ed.clearFocus();

2.

在AndroidMainfest.xml中选择哪个activity,设置windowSoftInputMode属性为adjustUnspecified|stateHidden 
例如:<activity android:name=".Main" 
                  android:label="@string/app_name" 
                  android:windowSoftInputMode="adjustUnspecified|stateHidden" 
                  android:configChanges="orientation|keyboardHidden"> 
            <intent-filter> 
                <action android:name="android.intent.action.MAIN" /> 
                <category android:name="android.intent.category.LAUNCHER" /> 
            </intent-filter> 
        </activity> 

3.

强制隐藏Android输入法窗口 
例如:EditText edit=(EditText)findViewById(R.id.edit);  
           InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
           imm.hideSoftInputFromWindow(edit.getWindowToken(),0); 

4.

EditText始终不弹出软件键盘 
例:EditText edit=(EditText)findViewById(R.id.edit); 
       edit.setInputType(InputType.TYPE_NULL); 

版权声明:本文为博主原创文章,未经博主允许不得转载。

edittext禁止android软键盘弹出

标签:android   edittext   软键盘   

原文地址:http://blog.csdn.net/cxt528440900/article/details/46737579

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!