RecyclerView 不会在带有 DrawerLayout 和底部的 CoordinatorLayout 内滚动 sheet
RecyclerView does not scroll inside CoordinatorLayout with DrawerLayout and bottom sheet
我有一个包含导航抽屉、工具栏和底部的布局 sheet。 RecyclerView 也存在于不滚动的布局中。
根布局是 CoordinatorLayout,它封装了 -> i) DrawerLayout & ii) NestedScrollView(对于底部 sheet 行为)
DrawerLayout 封装 -> i) LinearLayout & ii) NavigationView
LinearLayout 封装 -> i) Toolbar ii) ConstraintLayout
ConstraintLayout封装 -> i)ViewPager ii)TextView iii)RecyclerView(这个不滚动)
下面是我的 xml :
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="e.a.exlorista_customer.MainActivity">
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorActionBarBackground"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/imgSliderVP"
android:layout_width="match_parent"
android:layout_height="200dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/nearByStoresTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Nearby Stores"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintTop_toBottomOf="@+id/imgSliderVP"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"/>
<android.support.v7.widget.RecyclerView
<!-- This does not scroll -->
android:id="@+id/storeRV"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="10dp"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
app:layout_constraintTop_toBottomOf="@+id/nearByStoresTV" />
</android.support.constraint.ConstraintLayout>
</LinearLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_menu" />
</android.support.v4.widget.DrawerLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/cartSummary_MainActivityNSV"
android:layout_width="match_parent"
android:layout_height="65sp"
android:clipToPadding="true"
android:background="@color/colorActionBarBackground"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<LinearLayout
android:id="@+id/cartSummary_MainActivityLL"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp">
<TextView
android:id="@+id/cartItemCount_MainActivityTV"
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="0.4"
android:textColor="@color/colorActionBarTitleText"
android:textStyle="bold"
android:textSize="20sp"
android:gravity="center_vertical"
android:text="1 item"/>
<Button
android:id="@+id/proceedToCart_MainActivityB"
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="0.6"
android:text="Proceed to cart"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
我尝试过的:
- 在 NestedScrollView 中封装 ConstraintLayout
- 在 NestedScrollView 中封装 RecyclerView
1 和 2 都不行。
我是Android的新人所以请原谅我的天真如果这个问题涉及任何问题。
ConstraintLayout encapsulates -> i) ViewPager ii) TextView iii)
RecyclerView (This does not scroll)
当然不会。
CoordinatorLayout
应该是 DrawerLayout
的直系子代。此外,如果您使用 CoordinatorLayout
和 NestedScrollView
,您可能需要在 CoordinatorLayout
.
中添加 AppBarLayout
布局示例:
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ui.MainActivity">
<androidx.coordinatorlayout.widget.CoordinatorLayout
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"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:elevation="0dp">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="250dp"
android:overScrollMode="never"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false">
<androidx.appcompat.widget.Toolbar
android:id="@+id/myToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<!-- Your nestedScrollview here which should have this attribute
app:layout_behavior="@string/appbar_scrolling_view_behavior" /> -->
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_view_header"
app:menu="@menu/main_drawer" />
</androidx.drawerlayout.widget.DrawerLayout>
请先阅读文档。此外,现在您可以使用 AndroidX 命名空间。您现在可以迁移了。
我有一个包含导航抽屉、工具栏和底部的布局 sheet。 RecyclerView 也存在于不滚动的布局中。
根布局是 CoordinatorLayout,它封装了 -> i) DrawerLayout & ii) NestedScrollView(对于底部 sheet 行为)
DrawerLayout 封装 -> i) LinearLayout & ii) NavigationView
LinearLayout 封装 -> i) Toolbar ii) ConstraintLayout
ConstraintLayout封装 -> i)ViewPager ii)TextView iii)RecyclerView(这个不滚动)
下面是我的 xml :
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="e.a.exlorista_customer.MainActivity">
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorActionBarBackground"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/imgSliderVP"
android:layout_width="match_parent"
android:layout_height="200dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/nearByStoresTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Nearby Stores"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintTop_toBottomOf="@+id/imgSliderVP"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"/>
<android.support.v7.widget.RecyclerView
<!-- This does not scroll -->
android:id="@+id/storeRV"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="10dp"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
app:layout_constraintTop_toBottomOf="@+id/nearByStoresTV" />
</android.support.constraint.ConstraintLayout>
</LinearLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_menu" />
</android.support.v4.widget.DrawerLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/cartSummary_MainActivityNSV"
android:layout_width="match_parent"
android:layout_height="65sp"
android:clipToPadding="true"
android:background="@color/colorActionBarBackground"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<LinearLayout
android:id="@+id/cartSummary_MainActivityLL"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp">
<TextView
android:id="@+id/cartItemCount_MainActivityTV"
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="0.4"
android:textColor="@color/colorActionBarTitleText"
android:textStyle="bold"
android:textSize="20sp"
android:gravity="center_vertical"
android:text="1 item"/>
<Button
android:id="@+id/proceedToCart_MainActivityB"
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="0.6"
android:text="Proceed to cart"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
我尝试过的:
- 在 NestedScrollView 中封装 ConstraintLayout
- 在 NestedScrollView 中封装 RecyclerView
1 和 2 都不行。
我是Android的新人所以请原谅我的天真如果这个问题涉及任何问题。
ConstraintLayout encapsulates -> i) ViewPager ii) TextView iii) RecyclerView (This does not scroll)
当然不会。
CoordinatorLayout
应该是 DrawerLayout
的直系子代。此外,如果您使用 CoordinatorLayout
和 NestedScrollView
,您可能需要在 CoordinatorLayout
.
AppBarLayout
布局示例:
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ui.MainActivity">
<androidx.coordinatorlayout.widget.CoordinatorLayout
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"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:elevation="0dp">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="250dp"
android:overScrollMode="never"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false">
<androidx.appcompat.widget.Toolbar
android:id="@+id/myToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<!-- Your nestedScrollview here which should have this attribute
app:layout_behavior="@string/appbar_scrolling_view_behavior" /> -->
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_view_header"
app:menu="@menu/main_drawer" />
</androidx.drawerlayout.widget.DrawerLayout>
请先阅读文档。此外,现在您可以使用 AndroidX 命名空间。您现在可以迁移了。