繁体   English   中英

当单击后退按钮后键盘关闭时,如何从edittext清除焦点?

[英]How to clear focus from edittext when the keyboard closes after click back button?

我有一个AppBarLayout ,当我触摸EditText时隐藏了。

SearchFragment.class

 binding.searchEt.setOnFocusChangeListener { view, hasFocus ->
        if (hasFocus) {
            binding.appBarLayout.setExpanded(false, true)
        } else {
            binding.appBarLayout.setExpanded(true, true)
        }
    }

但是当键盘关闭时,我无法再显示AppBarLayout 因为当键盘关闭时EditText焦点不会改变。

Xml

 <EditText
     android:id="@+id/searchEt"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:layout_centerVertical="true"
     android:layout_marginStart="8dp"
     android:layout_toStartOf="@+id/close_button"
     android:layout_toEndOf="@+id/ic_search"
     android:background="@android:color/transparent"
     android:focusable="true"
     android:focusableInTouchMode="true"
     android:fontFamily="@font/catamaran_bold"
     android:hint="@string/search_hint"
     android:imeOptions="actionSearch"
     android:includeFontPadding="true"
     android:orientation="vertical"
     android:paddingStart="12dp"
     android:singleLine="true"
     android:textAlignment="viewStart"
     android:textColor="#000"
     android:textDirection="locale"
     android:textSize="18dp"
     tools:text="alskjfdn" />

隐藏键盘时如何清除焦点? 隐藏键盘后,光标仍显示。

使用这样的东西:

public void hideKeyboard(Activity activity){
  InputMethodManager imm = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
  View view = activity.getCurrentFocus();
  if(view != null){
    view.clearFocus();
    imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
  }
}

在键盘内部关闭监听器后,在键盘关闭后从editText清除焦点

editText.setFocusable(false);
editText.setFocusableInTouchMode(true);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM