如何在scrollview上方使用CollapsingToolbarLayout?

时间:2017-04-24 07:33:51

标签: android parallax android-collapsingtoolbarlayout android-nestedscrollview

我想用顶部横幅的视差效果创建此视图。

enter image description here

我试过了,但它没有用:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:layout_height="200dp"
    android:layout_width="match_parent">
    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <android.support.v7.widget.AppCompatImageView
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="@drawable/main_banner"/>

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

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

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/vahab_background">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@color/vahab_background">

        ...

    </LinearLayout>

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

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

导航栏上方的所有视图都在片段中膨胀。 我只想在主页面中看到整个视差。

2 个答案:

答案 0 :(得分:1)

CoordinateLayout http://saulmm.github.io/mastering-coordinator

上的精彩博客

答案 1 :(得分:0)

试一试。 在java类中将此collapsingToolbarLayout实例声明为全局。

private CollapsingToolbarLayout collapsingToolbarLayout;

在活动onCreate()方法下面放置代码

collapsingToolbarLayout = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
    collapsingToolbarLayout.setExpandedTitleColor(Color.TRANSPARENT);
    collapsingToolbarLayout.setCollapsedTitleTextColor(ContextCompat.getColor(this, R.color.color_white));