如何在Android中制作Secret iOS App文字动画?

How to make a Secret iOS App text animation in Android?

我正在寻找一种方法来将 iOS Secret 应用程序中的文本动画行为复制到 Android。效果在以下问题中描述:

How to Make a Secret iOS App Text Animation

您还可以在此处看到 iOS 的实现:

https://github.com/rcmcastro/RQShineLabel

有人熟悉 Android 框架的类似库吗?或者知道如何在 Android?

中实现相同的效果

找到这个允许向 TextView 添加不同动画的库,并为我做了这个技巧:

https://github.com/hanks-zyh/HTextView

这是您可以使用它添加的员工:

要为文本设置动画,您只需: 选择您要使用的动画类型:

mHTextView.setAnimateType(HTextViewType.EVAPORATE);

并且运行新添加文本的动画:

mHTextView.animateText("String text");

试试这个,但是这个库不适用于 gradle https://github.com/matthewrkula/SecretTextView