在android中的发光文本轮廓.

前端之家收集整理的这篇文章主要介绍了在android中的发光文本轮廓.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 android添加发光的文本轮廓?

这是一个例子:

解决方法

使用x,y = 0和Radious值为文本视图添加阴影,尽可能多地发光.
<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"/>
原文链接:https://www.f2er.com/android/310117.html

猜你在找的Android相关文章