android 安卓edittext自动弹出数字键盘
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 安卓edittext自动弹出数字键盘相关的知识,希望对你有一定的参考价值。
et.setFocusable(true); et.setFocusableInTouchMode(true); et.setInputType(EditorInfo.TYPE_CLASS_NUMBER); Timer timer = new Timer(); timer.schedule(new TimerTask() { public void run() { InputMethodManager inputManager =(InputMethodManager)et.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); inputManager.showSoftInput(et, 0); } }, 500);
以上是关于android 安卓edittext自动弹出数字键盘的主要内容,如果未能解决你的问题,请参考以下文章