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自动弹出数字键盘的主要内容,如果未能解决你的问题,请参考以下文章

怎么让android自动弹出数字键盘

Android EditText 禁止自动弹出键盘

安卓软件开发中怎么让一个EditText自动换行

Android进入页面开始就自动弹出软键盘

如何实现android EditText允许输入字母和数字,同时默认弹出数字键盘?

Android:隐藏 EditText 在 Activity 中键盘自动弹出