我有一个ImageView
和一个ListView
。
<ImageView
android:id="@+id/imageview"
android:layout_width="match_parent"
android:layout_height="200dp" />
<ListView
android:id="@+id/listview"
android:layout_below="@id/imageview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
现在我想要一个&#34;异步滚动&#34;效果,即在初始化后向下滚动ListView
时,ImageView
的高度将逐渐减小(以ListView
滚动速度的2倍)为0.当ListView
为滚动(向上)到顶部但用户仍然向上滚动,ImageView
将相应地增加原始高度(200dp,也是2倍速度)。
我该如何实施?