“滑动解锁” Android 上的文本动画,看起来像 iOS 上的

发布于 2024-10-17 13:39:15 字数 44 浏览 2 评论 0原文

有没有办法在Android上制作“滑动解锁”文本动画,看起来像iOS动画?

Is there a way to do the "slide to unlock" text animation on Android, looking like iOS animation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千と千尋 2024-10-24 13:39:15

这是这个问题的真正答案:

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 实例。

要阻止它:

shimmer.cancel();

Here is a real answer for this question:

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

Information on how to use it is in the wiki.

But for the sake of completion:

Add a ShimmerTextView to your layout:

<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"/>

To start the animation:

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

You may want to keep track of the shimmer instance after the animation is started if you want to stop it.

To stop it:

shimmer.cancel();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文