有没有办法在 Android 上做“滑动解锁”文本动画,看起来像 iOS 动画?
问问题
1896 次
2 回答
0
有很多方法可以在 android 上创建动画。
于 2011-02-16T13:39:40.387 回答
0
这是这个问题的真实答案:
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();
于 2014-12-24T10:30:55.487 回答