通过代码使文本发光。 (机器人)

时间:2016-01-15 17:05:39

标签: android textview glow

我想知道如何让我的文字在android中发光,我知道如何通过xml做一些属性,如:

android:shadowColor="#6A8B00"
android:shadowDx="3"
android:shadowDy="3"
android:shadowRadius="10"
android:text="@string/glowText"
android:textColor="#E15529"
android:textSize="30sp"

但我想通过代码来做,然后我可以更好地控制并在不同情况下或多或少地发光。 也许像view.setGlow?

谢谢你的帮助。

1 个答案:

答案 0 :(得分:7)

您可以在文本视图中使用setShadowLayer (float radius, float dx, float dy, int color)。例如:

textView.setShadowLayer(30, 0, 0, Color.RED);

在TextView documentation

中找到