Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Blinking Text in android view

How do I display Blinking Text in android.

Thank you all.

like image 921
David Prun Avatar asked Aug 10 '10 15:08

David Prun


1 Answers

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> 
like image 120
Bill Phillips Avatar answered Oct 18 '22 06:10

Bill Phillips