Android中ListView的异步滚动

时间:2015-10-17 07:30:24

标签: android listview onscrolllistener

我有一个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倍速度)。

我该如何实施?

0 个答案:

没有答案