加载listview中的动画

时间:2012-07-19 03:49:58

标签: android android-animation

我制作了一个列表视图,当我滚动列表视图时,在获取下一个列表项之前,加载圈正在页脚中工作。 加载圈已设置并从listview

获取
public void setLoadingView(View listFooter) {
    this.listFooter = listFooter;
}

public View getLoadingView() {
    return listFooter;
}

这是圆圈的xml

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dip"
    android:layout_marginRight="10dip"
    android:layout_marginTop="5dip"
    android:layout_marginBottom="5dip"

    android:baselineAligned="true"
    android:gravity="center"
    android:orientation="horizontal" >

     <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
      android:background="@drawable/pencil"
        android:textColor="#B36000" />
 </LinearLayout>

然后在listview中设置此布局。 现在我需要做的是我需要在装载圆圈中更换笔,其中笔是动画的。它就像笔写的一样动画。(就像有人用Skype写的那样,在屏幕上写一支钢笔)。我有这个笔动画的4张照片。实际上我不明白该怎么做:(... 我是android的新手

1 个答案:

答案 0 :(得分:1)

结帐Frame Animation。似乎所有你需要的是创建动画资源并将其作为ImageView的背景提供。结帐this question了解一些代码段以及有关如何启动动画的详细信息。