Replace selector images programmatically Replace selector images programmatically android android

Replace selector images programmatically


As far as I've been able to find (I've tried doing something similar myself), there's no way to modify a single state after the StateListDrawable has already been defined. You can, however, define a NEW one through code:

StateListDrawable states = new StateListDrawable();states.addState(new int[] {android.R.attr.state_pressed},    getResources().getDrawable(R.drawable.pressed));states.addState(new int[] {android.R.attr.state_focused},    getResources().getDrawable(R.drawable.focused));states.addState(new int[] { },    getResources().getDrawable(R.drawable.normal));imageView.setImageDrawable(states);

And you could just keep two of them on hand, or create a different one as you need it.


I had the same problem and went a step further to solve it. The only problem however is you can not specify the NavStateListDrawable in xml, so you have to set the background of your UI element through code. The onStateChange method must then be overriden to ensure that every time the level of the main drawable is changed, that you also update the level of the child level list.

When constructing the NavStateListDrawable you have to pass in the level of the icon you wish to display.

public class NavStateListDrawable extends StateListDrawable {    private int level;    public NavStateListDrawable(Context context, int level) {        this.level = level;        //int stateChecked = android.R.attr.state_checked;        int stateFocused = android.R.attr.state_focused;        int statePressed = android.R.attr.state_pressed;        int stateSelected = android.R.attr.state_selected;        addState(new int[]{ stateSelected      }, context.getResources().getDrawable(R.drawable.nav_btn_pressed));        addState(new int[]{ statePressed      }, context.getResources().getDrawable(R.drawable.nav_btn_selected));        addState(new int[]{ stateFocused      }, context.getResources().getDrawable(R.drawable.nav_btn_focused));        addState(new int[]{-stateFocused, -statePressed, -stateSelected}, context.getResources().getDrawable(R.drawable.nav_btn_default));    }    @Override    protected boolean onStateChange(int[] stateSet) {        boolean nowstate = super.onStateChange(stateSet);        try{            LayerDrawable defaultDrawable = (LayerDrawable)this.getCurrent();            LevelListDrawable bar2 =  (LevelListDrawable)defaultDrawable.findDrawableByLayerId(R.id.nav_icons);            bar2.setLevel(level);        }catch(Exception exception)        {        }        return nowstate;    }}

For all of the different navigation button drawable states i have something like the following.

<?xml version="1.0" encoding="utf-8"?><layer-list xmlns:android="http://schemas.android.com/apk/res/android">   <item android:drawable="@drawable/top_bar_default" >   </item>    <item android:id="@+id/nav_icons" android:bottom="0dip">        <level-list xmlns:android="http://schemas.android.com/apk/res/android">            <item android:maxLevel="0" >                <bitmap                    android:src="@drawable/top_bar_icon_back"                    android:gravity="center" />            </item>            <item android:maxLevel="1" >                <bitmap                    android:src="@drawable/top_bar_icon_nav"                    android:gravity="center" />            </item>            <item android:maxLevel="2" >                <bitmap                    android:src="@drawable/top_bar_icon_settings"                    android:gravity="center" />            </item>            <item android:maxLevel="3" >                <bitmap                    android:src="@drawable/top_bar_icon_search"                    android:gravity="center" />            </item>        </level-list>    </item></layer-list>

I was going to post this as a question and answer, but seeing as you've asked the very question, here you go. Note, this saves you a hell of a lot of xml file definitions. i went down from about 50-100 xml definitions down to about 4!.