Android中EditTex焦点设置和弹不弹出输入法的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android中EditTex焦点设置和弹不弹出输入法的问题相关的知识,希望对你有一定的参考价值。
参考技术A 在网上看了些例子都不够全面,在这里全面总结下。一: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 EditText如何设置默认是不弹出软键盘需要点击是才跳出来
EditText是在获得焦点时弹出软键盘,你可以在初始化activity的时候把焦点放在其他控件上,获得焦点可以在xml里面配置 android:getFocus="true";拼写可能不对,大意差不错,手上没有IDE追问放button可以吗 因为我的xml布局四个是EditText 一个button 还有只要在想放的控件加上android:getFocus="true";就可以吗
追答android编程时,当打开一个activity时,经常会因为内部存在editText类的组件,自动出现软键盘,影响视觉效果。
如果屏蔽软键盘,代码会比较繁杂,下面是列举了一个简单的方法。
我们可以这样来处理视图,将editText的焦点换成别的组件,像TextView,Button等等,这样就不会出现软键盘了。
先了解两句代码:
View.setFocusable(true),对应xml : android:focusable="true".
View.setFocusableInTouchMode(true),对应xml : android:focusableInTouchMode="true".
两者的意思是让组件可以获得焦点。不过有些区别,前者执行false条件后,在执行true,还是不能获取焦点。后者执行上述过程,还是能获取焦点。
当你加入上述代码后,在创建activity时,调用对应view的requestFocus(),这样就可以获得焦点了。当editText失去焦点了,也就不会有软键盘了
---------------------从别人那里抄过来的,应该可以满足你的需求.我记得在xml里面也可以配置android:requestFocus="true",可是刚试了下发现没这个属性,代码里面调用view.requestFocus()可以。
以上是关于Android中EditTex焦点设置和弹不弹出输入法的问题的主要内容,如果未能解决你的问题,请参考以下文章
Android EditText如何设置默认是不弹出软键盘需要点击是才跳出来
android:自定义可输入对话框,EditText已经获得焦点,为啥就是不弹出输入法呢?
解决Eclipse一直弹出Login Required要求输入用户、密码的问题