0

我正在尝试使用 androids CoordinatorLayout 和 FrameLayout。我想要的是一个工具栏 LinearLayout 显示一些信息 tablayout listviews

当列表视图滚动时,工具栏和 LinearLayouts 应该向上滚动和隐藏,并且选项卡应该位于顶部。

我有一个类型的布局:

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

    <android.support.design.widget.CoordinatorLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/coordinatorLayout"
            android:layout_height="match_parent"
            android:layout_width="match_parent">

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

        <-- stuff I want to hide on scrolling -->
            <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    app:layout_scrollFlags="scroll|enterAlways"
                    android:orientation="vertical">

                <include
                        layout="@layout/toolbar"
                        app:layout_scrollFlags="scroll|enterAlways"/>

                <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        app:layout_scrollFlags="scroll|enterAlways"
                        android:orientation="vertical">
                    <TextView
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:text="Gamercard content"
                            />
                    <TextView
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:text="More Gamercard content"
                            />
                </LinearLayout>

            </LinearLayout>

            <-- stuff I dont want to hide on scrolling -->

            <android.support.design.widget.TabLayout
                    android:id="@+id/tabLayout"
                    android:scrollbars="horizontal"
                    android:layout_below="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"/>


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

        <!-- My Scrollable View -->
        <include layout="@layout/nested_scrolling_container_view"/>

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

</android.support.v4.widget.DrawerLayout>

我想要做的是有一张图片作为整个活动的背景,但我看到的是 AppBarLayout 部分总是黑暗的。请帮忙。

4

1 回答 1

0

我可以通过将代码中的 backgroundColor 设置为 Color.TRANSPARENT 以编程方式完成。

appbar.setBackgroundColor(Color.TRANSPARENT);
于 2015-10-15T04:49:19.893 回答