Setting alpha of drawable through xml

6.6k Views Asked by At

Can we set the alpha of drawable for its disable state through XML? For example by using android:state_disable.

4

There are 4 best solutions below

0
On BEST ANSWER

actually we cant set alpha for drawable instead you should use this setAlpha(int alpha) Specify an alpha value for the drawable.

0
On

This is my solution, hope someone finds this useful. Yes, this is and old post, but posts like this need a answer that works today since they show up when you search.

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false">
        <bitmap android:alpha="@integer/disabled_alpha" android:src="@drawable/item"/>
    <item/>
    <item android:state_enabled="true" android:drawable="@drawable/item" />
</selector>
0
On

See my answer to a similar question: https://stackoverflow.com/a/29078730/562365

Basically you can use the alpha of a BitmapDrawable and then use that drawable in your selector.

0
On
Drawable card_water_wave = getResources().getDrawable(R.drawable.textview_back);
card_water_wave.setAlpha(150);