如何在Android中制作一个秘密的iOS App文本动画?

时间:2016-07-19 14:32:43

标签: android animation text app-secret

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

How to Make a Secret iOS App Text Animation

你也可以在这里看到它为iOS实现:

https://github.com/rcmcastro/RQShineLabel

有没有人熟悉Android框架的类似库?或者知道如何在Android中实现相同的效果?

2 个答案:

答案 0 :(得分:1)

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

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

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

enter image description here

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

mHTextView.setAnimateType(HTextViewType.EVAPORATE);

在新添加的文字上运行动画:

mHTextView.animateText("String text");

答案 1 :(得分:1)

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