0

我做了一个列表视图,当我滚动列表视图时,加载圈在页脚处工作,然后再获取下一个列表项。加载圈设置并从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 新手

4

1 回答 1

1

查看帧动画。似乎,您只需要创建动画资源并将其作为 ImageView 的背景。查看此问题以获取有关如何启动动画的一些代码片段和详细信息。

于 2012-07-19T04:02:47.217 回答