gpt4 book ai didi

android - 如果内容高度高于显示,工具栏内的内容不会折叠/滚动

转载 作者:行者123 更新时间:2023-11-30 01:49:05 27 4
gpt4 key购买 nike

如果我有如下所示的配置,比如 CollapsingToolbarLayout 中的自定义 View 高度超过屏幕高度,我无法折叠它。我需要做什么?我需要一个可以向上滚动的内容,下面有一个 recyclerview。没有视差或其他效果,只需滚动即可。

   <android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/refresher"
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:background="@color/accent_material_light"
android:isScrollContainer="false">

<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">


<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:fitsSystemWindows="true"
app:layout_collapseMode="pin"/>

<View android:layout_width="match_parent"
android:layout_height="1500dp"
android:background="@color/green_A100"
app:layout_scrollFlags="scroll"
/>
</android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<android.support.v7.widget.RecyclerView
android:id="@+id/recycle_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/cardview_light_background"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"

/>
</android.support.design.widget.CoordinatorLayout>
</android.support.v4.widget.SwipeRefreshLayout>

最佳答案

根据 Support Library 23.1 release blog post :

You’ll also find that AppBarLayout now allows users to start scrolling from within the AppBarLayout rather than only from within your scrollable view

如果您想从 AppBarLayout 开始滚动/CollapsingToolbarLayout ,您至少要更新到版本 23.1.0设计图书馆。

关于android - 如果内容高度高于显示,工具栏内的内容不会折叠/滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33323717/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com