在Android中滑动以解锁动画

时间:2014-09-03 17:11:28

标签: android animation textview

我想创建"幻灯片解锁"在我的Android应用程序上的iPhone上找到的动画。基本上通过textview有一个类似于波浪的彩色动画。有任何想法吗?谢谢你的帮助!

1 个答案:

答案 0 :(得分:2)

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();

享受:D