码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-11-10 22:07:53      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:android   安卓   自动弹出   数字键盘   

		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   安卓   自动弹出   数字键盘   

原文地址:http://11020803.blog.51cto.com/11010803/1871459

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!