I want to change the default color for icons on Android Studio and set alpha to 60%.
How can I do this on styles.xml
file?
I want to change the default color for icons on Android Studio and set alpha to 60%.
How can I do this on styles.xml
file?
For changing color use:
android:tint="@android:color/white"
For setting alpha to 60%, change this
<color name="white">#ffffff</color>
to
<color name="white">#99ffffff</color> <!-- 99 is for 60% alpha and other pairs are for R G B -->
Check these:
I cann't comment because of low points