NestedScrollView не прокручивается с помощью CoordinatorLayout - PullRequest
0 голосов
/ 29 апреля 2019

Попытка прокрутить содержимое в пределах CoordinatorLayout с помощью NestedScrollView не работает для следующего макета фрагмента:

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:scrollbars="none"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="24dp"
            android:orientation="vertical">

            <!-- Scrollable content -->

        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

Как сделать содержимое внутри NestedScrollView прокручиваемым?windowSoftInput установлен на adjustResize для хостинга, а тема - Theme.MaterialComponents.Light.NoActionBar.Также активность не полноэкранная.

1 Ответ

0 голосов
/ 30 апреля 2019

Пришлось применить обходной путь, упомянутый здесь: https://stackoverflow.com/a/36322516, так как у меня больше ничего не получалось. Поэтому помечайте этот ответ как принятый, пока рабочее решение не будет опубликовано как ответ

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...