2012-07-19 95 views
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

回答

1

看看Frame Animation。好像,所有你需要的是創建動畫資源並提供它作爲背景爲ImageView。結賬this question爲一些代碼片段和如何開始動畫的細節。