NestedScrollView 不使用 CoordinatorLayout 滚动
NestedScrollView not scrolling with CoordinatorLayout
-
android
-
android-design-library
-
androiddesignsupport
-
android-coordinatorlayout
-
android-nestedscrollview
尝试使用 NestedScrollView
滚动 CoordinatorLayout
中的内容不适用于以下片段布局:
<?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
用于托管 activity,主题是 Theme.MaterialComponents.Light.NoActionBar
。 activity 也不是全屏。
必须应用此处提到的解决方法: 因为没有其他方法对我有用。因此,将此答案标记为已接受,直到将有效的解决方案发布为答案
android
android-design-library
androiddesignsupport
android-coordinatorlayout
android-nestedscrollview
尝试使用 NestedScrollView
滚动 CoordinatorLayout
中的内容不适用于以下片段布局:
<?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
用于托管 activity,主题是 Theme.MaterialComponents.Light.NoActionBar
。 activity 也不是全屏。
必须应用此处提到的解决方法: 因为没有其他方法对我有用。因此,将此答案标记为已接受,直到将有效的解决方案发布为答案