Reputation: 53600
In my splash screen I have a TextView that it shows the name of application. Is it possible to add effect(s) (for example shade) to this text?
Upvotes: 1
Views: 2310
Reputation: 4324
Yes of-course you can make your splash screen more innovative with Shimmer Effect.
If you implement then name of application on splash screen will have glow effect from left to right. You can see my answer for this effect. https://stackoverflow.com/a/34327956/2022000
Upvotes: 0
Reputation: 1327
You can use something like this to put the shadow, it works
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:shadowColor="#555555"
android:shadowDx="5.0"
android:shadowDy="5.0"
android:shadowRadius="3.0"
/>
Upvotes: 6