I have a problem with a crumbling toolbar, in the advanced state I want a blurry shadow under the text, I use this code:
collapsingToolbar.setExpandedTitleTextAppearance(R.style.toolbar_text);
from:
<style name="toolbar_text"> <item name="android:textColor">@color/white</item> <item name="android:shadowColor">@color/black</item> <item name="android:shadowDx">2</item> <item name="android:shadowDy">2</item> <item name="android:shadowRadius">4</item> </style>
I can change the textColor , it works, but the shadow does not work. I tried many different values ββfor the shadow.
Is it possible to cast a shadow on minimized text? Because in bright images, the title is sometimes difficult to read.
android collapsingtoolbarlayout
neoteknic
source share