android 安卓edittext自动弹出数字键盘

观书散遗帙,探古穷至妙。这篇文章主要讲述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自动弹出数字键盘】


    推荐阅读