首页 > 其他 > 详细

动态显示/隐藏软键盘

时间:2016-03-28 08:53:01      阅读:218      评论:0      收藏:0      [点我收藏+]

4.动态显示软键盘

 

@TargetApi(Build.VERSION_CODES.CUPCAKE)

public static void showSoftInput(Context context, EditText edit) {

        edit.setFocusable(true);

        edit.setFocusableInTouchMode(true);

        edit.requestFocus();

        InputMethodManager inputManager = (InputMethodManager) context

                .getSystemService(Context.INPUT_METHOD_SERVICE);

        inputManager.showSoftInput(edit, 0);

    }

 

5.动态显示或者是隐藏软键盘

 

@TargetApi(Build.VERSION_CODES.CUPCAKE)

public static void toggleSoftInput(Context context, EditText edit) {

        edit.setFocusable(true);

        edit.setFocusableInTouchMode(true);

        edit.requestFocus();

        InputMethodManager inputManager = (InputMethodManager) context

                .getSystemService(Context.INPUT_METHOD_SERVICE);

        inputManager.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);

    }

动态显示/隐藏软键盘

原文:http://www.cnblogs.com/Jingerxin/p/5327704.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!