android edittext 初始不获取焦点 android 键盘隐藏

在 edittext 布局前加一个空布局

<LinearLayout
        android:focusable="true" android:focusableInTouchMode="true"
        android:layout_width="0dp" android:layout_height="0dp"/>

andriod 键盘隐藏

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
	imm.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);


你可能感兴趣的:(android,EditText,andriod,初始不获取焦点,键盘隐藏)