Как скрыть мягкую клавиатуру изнутри фрагмента? - PullRequest
78 голосов
/ 29 октября 2011

У меня есть FragmentActivity, использующий ViewPager для обслуживания нескольких фрагментов. Каждый из них представляет собой ListFragment со следующим макетом:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="8dp">
        <ListView android:id="@id/android:list"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />

        <EditText android:id="@+id/entertext"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>

При запуске упражнения отображается программная клавиатура. Чтобы исправить это, я сделал следующее внутри фрагмента:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    //Save the container view so we can access the window token
    viewContainer = container;
    //get the input method manager service
    imm = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
    . . .
}

@Override
public void onStart() {
    super.onStart();

    //Hide the soft keyboard
    imm.hideSoftInputFromWindow(viewContainer.getWindowToken(), 0);
}

Я сохраняю входящий параметр ViewGroup container из onCreateView как способ доступа к токену окна для основного действия. Это работает без ошибок, но клавиатура не скрывается от вызова на hideSoftInputFromWindow в onStart.

Первоначально я пытался использовать раздутый макет вместо container, т.е.:

imm.hideSoftInputFromWindow(myInflatedLayout.getWindowToken(), 0);

но это бросило NullPointerException, предположительно, потому что сам фрагмент не является активностью и не имеет уникального жетона окна?

Есть ли способ скрыть программную клавиатуру из фрагмента или мне следует создать метод в FragmentActivity и вызвать его из фрагмента?

Ответы [ 11 ]

0 голосов
/ 07 июля 2018

Ничего из этого не работало на API27. Мне пришлось добавить это в контейнер макета, для меня это был ConstraintLayout:

<android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:focusedByDefault="true">

//Your layout

</android.support.constraint.ConstraintLayout>
...