android 透明应用程序栏布局和折叠工具栏布局

x6h2sr28  于 2022-12-28  发布在  Android
关注(0)|答案(1)|浏览(171)

我想实现以下布局:
1.Map作为基础布局
1.折叠工具栏布局内上方的透明窗口

  1. Recycler查看内容
    我在这里举了一个例子来说明它应该是什么样子的。

我在Cheesesquare中使用了这个很棒的例子来实现CollapsingToolbarLayout和AppBarLayout,我设法让内容与CollapsingToolbarLayout内部的Map一起工作(在layoutxml中注解掉了),但这不是想要的结果。
但是,我没有找到任何解决方案/文档来制作灰盒(见中间的内图)在初始位置是透明的。我希望它是透明的,以便看到通过的Map。当用户将滚动,老余应该做它的工作,折叠透明窗口,显示工具栏。现在的图像看起来只是白色或任何颜色,我给予它。我已经尝试将颜色设置为透明,但没有达到预期效果。
"所以我的问题是“* 如何在初始阶段将“CollapsingToolbarLayout”设置为透明(参见图像图层1灰框)?*
这是我的布局代码。CollapsingToolbarLayout工作得很好,但是我看不到下面的Map。如果可以实现的话就太好了。

<android.support.design.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">

    <!-- Layer 0 -->
    <FrameLayout
        android:id="@+id/overlayFragmentMap"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:elevation="0dip"
        />

    <!-- Layer 1 -->
    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="192dp"
        android:fitsSystemWindows="true"
        android:theme="@style/CustomActionBar">
        <!--android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar-->

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorAccent"
            app:expandedTitleMarginBottom="32dp"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleTextAppearance="@color/black"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <!-- Map view inside here works perfectly but is not
            the deisired result -->
            <!--
            <FrameLayout
                android:id="@+id/overlayFragmentMap"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:elevation="0dip"
                app:layout_collapseMode="parallax"
                />
            -->

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="@drawable/transparent"
                android:elevation="4dip"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

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



    <!-- Fragment with recyclerview inside -->
    <FrameLayout
        android:id="@+id/overlayFragmentContent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:elevation="3dip"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dip"
        android:clickable="true"
        app:layout_anchor="@+id/appbar"
        app:layout_anchorGravity="bottom|right|end" />

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

cetgtptt1#

如何在初始阶段将“CollapsingToolbarLayout”设置为透明(参见图像图层1灰色框)?

  • 尝试在您的AppBarLayout中使用此功能:*android:background="@android:color/transparent"
<android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            android:layout_width="match_parent"
            android:layout_height="192dp"
            android:background="@android:color/transparent"
            android:fitsSystemWindows="true">

结果如下:

相关问题