首页 > 移动平台 > 详细

edittext禁止android软键盘弹出

时间:2017-05-18 09:21:50      阅读:424      评论:0      收藏:0      [点我收藏+]

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!