是否可以使用协调器布局进行简单的图像视图视差而不使用拼写工具栏布局?

时间:2015-07-13 15:42:46

标签: android coordinator-layout

您好,我想我的布局包含以下内容

    <ScrollView
        android:id="@+id/scroll"
        android:layout_below="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/button">

        <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="240dp"
            android:scaleType="centerCrop"
            android:src="@drawable/android" />
        <View android:id="@+id/anchor"
            android:layout_width="match_parent"
            android:layout_height="240dp" />
        <TextView
            android:id="@+id/body"
            android:layout_below="@+id/anchor"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/white"
            android:textColor="@android:color/black"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:paddingTop="@dimen/activity_vertical_margin"
            android:text="@string/sample" />
    </RelativeLayout>

    </ScrollView>

是否可以使用协调器布局使图像视图在向上或向下滚动时以滚动视图速度的一半移动。

2 个答案:

答案 0 :(得分:7)

可能不是CoordinatorLayout的预期用途,但我相信通过以下方式实现了您的预期效果:

enter image description here

a.ui-icon-star:after{
    background-color: #ffcb04 !important;
}  

答案 1 :(得分:4)

很少有可以帮助您使用Parallax的库:

特别是ParallaxEvery令人印象深刻。但你应该根据你的用法采用。