为包含AppbBarLayout的活动设置背景

时间:2015-10-15 01:43:23

标签: android android-layout android-appbarlayout

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

当滚动列表视图时,工具栏和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部分总是很暗。请帮忙。

1 个答案:

答案 0 :(得分:0)

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

appbar.setBackgroundColor(Color.TRANSPARENT);