我想在我的android应用程序上创建iphone上的“幻灯片解锁”动画。基本上有一个通过文本视图运行的波浪状的彩色动画。有什么想法吗?谢谢你的帮助!

最佳答案

https://github.com/RomainPiel/Shimmer-android
关于如何使用它的信息在wiki中。
但为了完成:
在布局中添加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();

享受:D

07-25 22:08