在android中的发光文本轮廓。

时间:2012-03-26 07:50:43

标签: android text contour glow

如何在android中添加发光的文本轮廓?

以下是一个例子:

enter image description here

1 个答案:

答案 0 :(得分:8)

使用x,y = 0和半径值为文本视图添加阴影,尽可能多地发光。

<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"/>