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

edittext禁止android软键盘弹出

时间:2017-05-18 09:47:24      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:ecif   inf   lin   manager   key   cat   属性   test   windows   

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软键盘弹出

标签:ecif   inf   lin   manager   key   cat   属性   test   windows   

原文地址:http://www.cnblogs.com/yutingliuyl/p/6871578.html

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