TextView 文本大小的动画
我希望能够制作文本动画并更改 TextView 中文本的大小。我读到 android 中有属性动画,但如果有人知道可以为我执行此操作的简单代码或某个地方的示例,我将深深感激。提前谢谢你!
I want to be able to do a text animation and change the size of the text in a TextView. I read that there are property animations in android but if someone knows a simple code that can do this for me or an example somewhere I will deeply appreciate it. Thank u in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
scale.xml
Activity 中的函数:
从此处提取和修改
scale.xml
A function into an Activity:
extracted and modified from here
如果您使用按钮事件来显示动画,则将代码放入 onClick() 中,否则使用重写方法 onWindowFocusChanged(boolean hasFocus) 来启动动画
If you are using button event to show animation then put the code inside onClick() otherwise use override method onWindowFocusChanged(boolean hasFocus) to start animation
在android中使用ValueAnimator类
参考此链接 ValueAnimator
另一个解决方案是应用在 Textview 或其父布局上缩放动画
Use ValueAnimator class in the android
refer this link ValueAnimator
Another solution is that apply scale animation on Textview or its parent layout