2011-02-16 60 views

回答

0

下面是這個問題的一個真正的答案:

https://github.com/RomainPiel/Shimmer-android

如何使用它在維基信息。

但完成的緣故:

添加ShimmerTextView到您的佈局:

<com.romainpiel.shimmer.ShimmerTextView 
    android:id="@+id/shimmer_tv" 
    android:text="@string/shimmer" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textColor="#444" 
    android:textSize="50sp"/> 

啓動動畫:

shimmer = new Shimmer(); 
shimmer.start(myShimmerTextView); 

你可能想跟蹤如果你想停止動畫,動畫開始後的微光實例。

要停止它:

shimmer.cancel();