透明的AppBarLayout工具栏,并在其后放置内容

问题描述 投票:0回答:1

到目前为止,我已经成功实现了具有滚动标志和AppBar滚动行为的AppBarLayout和Toolbar,它们都很好用。我的最终目标是实现如下所示:

Netflix App Example

您可以看到AppBar是透明的,并且内容在其后面。其他所有功能都可以正常运行。

[根据我的观察,当我放置app:layout_behavior =“ @ string / appbar_scrolling_view_behavior”(就我而言,我使用了app:layout_behavior =“ com.google.android.material.appbar.AppBarLayout $ ScrollingViewBehavior”)标记CoordinatorLayout不允许我重叠视图(在这种情况下,AppBar应该重叠我的内容)。

这是我的XML:

<androidx.drawerlayout.widget.DrawerLayout
    android:id="@+id/drawerLayout"
    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">

<androidx.coordinatorlayout.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:fitsSystemWindows="true">

    <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">

        <fragment
                android:id="@+id/fragment"
                android:name="androidx.navigation.fragment.NavHostFragment"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:navGraph="@navigation/root_nav_graph"
                app:defaultNavHost="true"
                />

    </FrameLayout>

    <com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/white"
            app:layout_behavior="com.google.android.material.appbar.AppBarLayout$Behavior"
            >

        <com.google.android.material.appbar.MaterialToolbar
                android:id="@+id/toolBar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"                  
                app:layout_scrollFlags="scroll|enterAlways|snap"
                />

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

</androidx.coordinatorlayout.widget.CoordinatorLayout>

该片段以NestedScrollView为根保存布局。

android android-layout android-toolbar android-appbarlayout
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.