【Android开发】EditView弹出数字键盘的方法
程序员文章站
2023-09-29 16:04:19
如果你的edittext的输入类型为数字,那么会弹出数字键盘
android:inputtype="number"
下面进入重要的地方
edittext inputtext =...
如果你的edittext的输入类型为数字,那么会弹出数字键盘
android:inputtype="number"
下面进入重要的地方
edittext inputtext = (edittext)findviewbyid(r.id.phone_num);
inputtext.setfocusable(true);
inputtext.setfocusableintouchmode(true);
inputtext.requestfocus(); //先将inputtext取得焦点
waitpop();//再另一方法里等待弹出,因为在oncreate()方法中android会做一些准备工作,使键盘无法弹出,那么我们就等一会儿,个人觉得0.3秒比较好。
//等待弹出方法
private void waitpop() {
timer timer = new timer();//开启一个时间等待任务
timer.schedule(new timertask() {
@override
public void run() {
inputmethodmanager imm = (inputmethodmanager)inputtext.getcontext().getsystemservice(context.input_method_service);//得到的输入方法服务
imm.showsoftinput(inputtext, 0);
}
}, 300);
}