gpt4 book ai didi

android - 在 Android 中滚动时折叠布局

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:12:50 25 4
gpt4 key购买 nike

我希望自定义 View 在滚动过程中通过过渡折叠。

我有 AppBarLayout,里面有一个 Toolbar。在其下方有一个我想要折叠的自定义 View 。

在自定义 View 下方有一个带有LinearLayoutNestedScrollView

工具栏是绿色的,自定义布局是粉红色的,线性滚动是灰色的:

toolbar custom view and

向下滚动后:

scrolled down

<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">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>


<RelativeLayout
android:layout_width="match_parent"
android:layout_height="170dp"
android:layout_marginTop="?attr/actionBarSize"
android:background="@drawable/background"
android:gravity="center">
</RelativeLayout>

<ScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="170dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<include
layout="@layout/linear"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

</ScrollView>

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

我应该使用自定义行为和 CoordinatorLayout 还是使用带有翻译动画的 NestedScroll 进行翻译?

最佳答案

关于android - 在 Android 中滚动时折叠布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44860488/

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