0
我做了一個listview,當我滾動列表視圖時,在下一個列表項目之前,加載圓正在頁腳上工作。 裝載的圈子設置和列表視圖加載列表視圖中的動畫
public void setLoadingView(View listFooter) {
this.listFooter = listFooter;
}
public View getLoadingView() {
return listFooter;
}
得到這是圓
<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>
XML,然後將該佈局列表視圖。 現在我要做的是我需要更換一支筆,在加載圓的地方,筆是動畫的,它的動畫就像寫筆一樣(當有人用skype寫時,在屏幕上顯示一支筆寫)。其實我不明白該怎麼辦:(... 我是新來的android