Android4.0 EidtText不弹出输入法

我通过设置inputType为null,然后设置singleLine为false,可以实现EditText不弹出输入法(即使点击输入框也不弹出),但是在4.0里面就有了问... 我通过设置inputType为null,然后设置singleLine为false,可以实现EditText不弹出输入法(即使点击输入框也不弹出),但是在4.0里面就有了问题(光标不见了),所以,想请教一下Android开发大牛们,谢谢了。
我要做的就是在Android4.0下让Edittext永不弹出输入法,点击输入框也不弹出输入法。
展开
 我来答
千锋教育
2015-12-07 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
展开全部

看一个manifest中Activity的配置,如果这个页面有EditText,并且我们想要进入这个页面的时候默认弹出输入法,可以这样设置 这个属相:android:windowSoftInputMode=stateVisible,这样就会默认弹起输入法,当然还有别的办法。


<activity android:name=".ui.login"
   android:configChanges="orientation|keyboardHidden|locale"
   android:screenOrientation="portrait"
   android:windowSoftInputMode="stateVisible|adjustPan" > 
</activity>

Android EditText 不弹出输入法总结

方法一:

在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>

方法二:

让EditText失去焦点,使用EditText的clearFocus方法

例如:

EditText edit=(EditText)findViewById(R.id.edit); 
edit.clearFocus();

方法三:

强制隐藏Android输入法窗口

例如:

EditText edit=(EditText)findViewById(R.id.edit); 
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
imm.hideSoftInputFromWindow(edit.getWindowToken(),0);

2.EditText始终不弹出软件键盘

例:

EditText edit=(EditText)findViewById(R.id.edit); 
edit.setInputType(InputType.TYPE_NULL);

研究了下android中焦点Focus和弹出输入法的问题。在网上看了些例子都不够全面,在这里全面总结下。

一:EditText为什么会默认弹出输入法?

同样的代码,碰到有EditText控件的界面时有的机子会弹出输入法,有的机子不会弹出。不好意思,这问题我也一头雾水,谁知道可以告诉我,否则 我就把这个问题留下来,以后研究android 源码时再搞个清楚。但是...我有解决方案。

二:默认弹出和默认关闭输入法的解决方案。

1.默认关闭,不至于进入Activity就打开输入法,影响界面美观。

①在布局文件中,在EditText前面放置一个看不到的LinearLayout,让他率先获取焦点:

<LinearLayout 
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="0px"
android:layout_height="0px"/>

②方法二:先看一个属性android:inputType:指定输入法的类型,int类型,可以用|选择多个。取值可以参 考:android.text.InputType类。取值包括:text,textUri,

phone,number,等.

Android SDK中有这么一句话“If the given content type is TYPE_NULL then a soft keyboard will not be displayed for this text view”,

先将EditText的InputType改变为TYPE_NULL,输入法就不会弹出.然后再设置监听,再重新设置它的InputType.


editText.setOnTouchListener(new OnTouchListener() { 
   public boolean onTouch(View v, MotionEvent event) {  
   // TODO Auto-generated method stub 
   int inType = editText.getInputType(); // backup the input type 
   editText.setInputType(InputType.TYPE_NULL); // disable soft input     
   editText.onTouchEvent(event); // call native handler     
   editText.setInputType(inType); // restore input type    
   return true;                      
   }  
});

2.默认弹出。有时候按照需求可能要求默认弹出输入法。方案如下:


EditText titleInput = (EditText) findViewById(R.id.create_edit_title); 
titleInput.setFocusable(true); 
 titleInput.requestFocus(); 
 onFocusChange(titleInput.isFocused()); 
private void onFocusChange(boolean hasFocus) 

final boolean isFocus = hasFocus; 
(new Handler()).postDelayed(new Runnable() { 
public void run() { 
InputMethodManager imm = (InputMethodManager) 
titleInput.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); 
if(isFocus) 

imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); 

else

imm.hideSoftInputFromWindow(titleInput.getWindowToken(),0); 


}, 100); 
}

我觉得因为在Android的主线程中对UI的操作无效,所以必须在Handler中实现弹出输入法的操作。

三:关于焦点和输入法的个人理解

获取焦点是获取焦点,弹输入法是弹输入法。获取焦点后并不一定会弹出输入法,在网上搜了一圈,主流回答是“还有就是已开启界面就是focus的 text的话有可能也是不行的,UI渲染是需要时间的”......

由于对源码不懂,我对这一点也没有个全面的认识。只能将焦点和输入法分成两块来处理。焦点的打开和关闭特别简单。

焦点的获取:

titleInput.setFocusable(true); 
titleInput.requestFocus();

焦点的取消:

titleInput.setFocusable(false);

四:关于经常调用的处理软键盘的函数如下:

1、打开输入法窗口:

InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

// 接受软键盘输入的编辑文本或其它视图

imm.showSoftInput(submitBt,InputMethodManager.SHOW_FORCED);

2、关闭出入法窗口


InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); 
inputMethodManager.hideSoftInputFromWindow(OpeListActivity.this.getCurrentFocus().getWindowToken(), 
InputMethodManager.HIDE_NOT_ALWAYS);

//接受软键盘输入的编辑文本或其它视图

inputMethodManagerwww.2cto.com 
.showSoftInput(submitBt,InputMethodManager.SHOW_FORCED);

3、如果输入法打开则关闭,如果没打开则打开

InputMethodManager m=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); 
m.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);

4、获取输入法打开的状态

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
boolean isOpen=imm.isActive();

isOpen若返回true,则表示输入法打开

百度网友0a25182
推荐于2016-08-30
知道答主
回答量:7
采纳率:0%
帮助的人:13.7万
展开全部
4.0用反射调用setShowSoftInputOnFocus方法,此方法为4.0新增,2.3仍用 mEtInput.setInputType(InputType.TYPE_NULL)
你的这样做,代码片段如下:
getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
Method setShowSoftInputOnFocus = mEtInput.getClass().getMethod("setShowSoftInputOnFocus",
boolean.class);
setShowSoftInputOnFocus.setAccessible(true);
setShowSoftInputOnFocus.invoke(mEtInput, false);

参考资料: http://bbs.csdn.net/topics/390258609

本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9852129
2013-03-13
知道答主
回答量:26
采纳率:0%
帮助的人:11.4万
展开全部
把这个editetext 的editeable设置为false
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
敬紫安07E
2012-11-09
知道答主
回答量:7
采纳率:0%
帮助的人:5.6万
展开全部
你试试看其他属性都有什么说明
更多追问追答
追问
我都试了。没有其他相关的设置(要么就是我不会设置的问题)
追答
有时候问题不是处在控件设置上。 查一下框架的属性。。多翻一下就知道了。
来自:求助得到的回答
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式