Glowing text outline in android.

How can I add a luminous text outline in android?

Here is an example:

enter image description here

+5
source share
1 answer

Add a shadow to your text view with x, y = 0, and the Radious value as much as you want.

<TextView android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="Glowing" 
android:textSize="40sp" 
android:textStyle="bold" 
android:shadowColor="#0000ff" 
android:textColor="#C02938" 
android:shadowDx="0.0" 
android:shadowDy="0.0" 
android:shadowRadius="10"/>
+7
source

All Articles