0

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?

Sunny
  • 3,134
  • 1
  • 17
  • 31
  • 1
    Welcome to stackoverflow! Please kindly take your time to read and learn: How To Ask Question https://stackoverflow.com/help/how-to-ask – olajide Sep 03 '18 at 01:24

1 Answers1

2

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

pd9
  • 124
  • 2
  • 11