I don't want to use a view, just the API to print text at X/Y.
I found some XML to do it with a view:
Or: http://developer.android.com/reference/android/widget/TextView.html#attr_android:shadowColor
Is there a way to get that?
I found some XML to do it with a view:
B4X:
I use this but no effect... xml is: <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Glow" android:textSize="40sp" android:id="@+id/id_tv_GlowText" android:textStyle="bold" android:shadowColor="#0000ff" android:textColor="#0000ff" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="280"/> also tried 210... same result... – Farhan Apr 17 '11 at 10:22
yup you are right... but little change. set shadowradius = "8"... – Farhan Apr 17 '11 at 15:34
+1 it works..
Or: http://developer.android.com/reference/android/widget/TextView.html#attr_android:shadowColor
Is there a way to get that?