在Android上播放动画

时间:2016-03-04 15:48:04

标签: android animation views

我有以下布局。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="240dp"
            android:background="#123"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Hello world"/>

    </LinearLayout>
</ScrollView>

enter image description here

我想增加ImageView的大小,因为有人向下滚动ScrollView。特别是当ImageView变得足够大以滚动时,我想完成活动。任何建议都会非常有用。

1 个答案:

答案 0 :(得分:1)

要达到这种效果,您需要使用CoordinatorLayout,这样您就可以在滚动时隐藏它。

看看这个:https://guides.codepath.com/android/Handling-Scrolls-with-CoordinatorLayout