Possible Duplicate:
Android - shadow on text?
How can i make shadow effect text in a TextView.
Any Idea?
Possible Duplicate:
Android - shadow on text?
How can i make shadow effect text in a TextView.
Any Idea?
Complete answer
Add these 2 line to the parent view otherwise Text Shadow will be clipped when view bound are smaller than shadow offset
android:clipChildren="false"
android:clipToPadding="false"
EXAMPLE:
<androidx.constraintlayout.widget.ConstraintLayout
android:clipChildren="false"
android:clipToPadding="false"
... >
<TextView
style="@style/TextShadowStyle"
....
/>
Text Shadow Style:
<style name="TextShadowStyle">
<item name="android:shadowColor">@color/black</item>
<item name="android:shadowDx">10</item>
<item name="android:shadowDy">10</item>
<item name="android:shadowRadius">5</item>
</style>