EditTextsetOnFocusChangeListener(new ViewOnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if(hasFocus){//获得焦点
}else{//失去焦点
}
}
});
edittextsetFocusable(true);
edittextsetFocusableInTouchMode(true);
edittextrequestFocus();
edittextfindFocus();
InputMethodManager inputManager = (InputMethodManager)edittextgetContext()getSystemService(ContextINPUT_METHOD_SERVICE);
inputManagershowSoftInput(edittext, 0);
试试这个看好用不。
以上就是关于android 怎么在代码中判断edittext有没有获取焦点全部的内容,包括:android 怎么在代码中判断edittext有没有获取焦点、android 如何点击按键 让edittext 获取焦点、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)