码迷,mamicode.com
首页 > 其他好文 > 详细

Dialog中EditText获取焦点,并且自动弹出软键盘

时间:2017-06-03 14:08:05      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:systems   manage   code   override   问题   dilaog   blog   params   service   

       //解决dilaog中EditText无法弹出输入的问题
        dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
        //弹出对话框后直接弹出键盘
        et_newReason.setFocusableInTouchMode(true);
        et_newReason.requestFocus();
        CmzStaffApplication.handler.postDelayed(new Runnable() {
            @Override
            public void run() {
                InputMethodManager inputManager =(InputMethodManager) et_newReason.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
                inputManager.showSoftInput(et_newReason, 0);
            }
        }, 100);

 

Dialog中EditText获取焦点,并且自动弹出软键盘

标签:systems   manage   code   override   问题   dilaog   blog   params   service   

原文地址:http://www.cnblogs.com/tinyclear/p/6936901.html

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