我想知道如何让我的文字在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?
感谢您的任何帮助.
解决方法:
您可以在textview上使用setShadowLayer(float radius,float dx,float dy,int color).例如:
textView.setShadowLayer(30, 0, 0, Color.RED);
在TextView documentation中找到