本文介绍了android 视图中的闪烁文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何在 android 中显示闪烁文本.
How do I display Blinking Text in android.
谢谢大家.
推荐答案
实际上 ICS 中有一个复活节彩蛋闪烁标签!:) 我实际上并不推荐使用它 - 不过在源代码中找到它真的很有趣!
Actually there is an Easter egg blink tag for this in ICS! :) I don't actually recommend using it - was REALLY amused to find it in the source, though!
<blink xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I'm blinking"
/>
</blink>
这篇关于android 视图中的闪烁文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!