Android开发~点击其它控件弹出软键盘

软键盘弹出:(比如点击LinearLayout)


InputMethodManager inputMethodManager=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
                addAddressRemarkInfo.requestFocus();//setFocus方法无效 //addAddressRemarkInfo is EditText

Activity含有EditText初始化隐藏键盘,在布局xml里面添加

    <!--屏蔽输入法的-->
    <LinearLayout
        android:layout_width="0px"
        android:layout_height="0px"
        android:focusable="true"
        android:focusableInTouchMode="true" />

猜你喜欢

转载自blog.csdn.net/pkandroid/article/details/78293372