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里面添加

    
    "0px"
        android:layout_height="0px"
        android:focusable="true"
        android:focusableInTouchMode="true" />

你可能感兴趣的:(android,屏蔽和弹出软键盘,android,开发,综合)