How to add a custom button state How to add a custom button state android android

How to add a custom button state


The solution indicated by @(Ted Hopp) works, but needs a little correction: in the selector, the item states need an "app:" prefix, otherwise the inflater won't recognise the namespace correctly, and will fail silently; at least this is what happens to me.

Allow me to report here the whole solution, with some more details:

First, create file "res/values/attrs.xml":

<?xml version="1.0" encoding="utf-8"?><resources>    <declare-styleable name="food">        <attr name="state_fried" format="boolean" />        <attr name="state_baked" format="boolean" />    </declare-styleable></resources>

Then define your custom class. For instance, it may be a class "FoodButton", derived from class "Button". You will have to implement a constructor; implement this one, which seems to be the one used by the inflater:

public FoodButton(Context context, AttributeSet attrs) {    super(context, attrs);}

On top of the derived class:

private static final int[] STATE_FRIED = {R.attr.state_fried};private static final int[] STATE_BAKED = {R.attr.state_baked};

Also, your state variables:

private boolean mIsFried = false;private boolean mIsBaked = false;

And a couple of setters:

public void setFried(boolean isFried) {mIsFried = isFried;}public void setBaked(boolean isBaked) {mIsBaked = isBaked;}

Then override function "onCreateDrawableState":

@Overrideprotected int[] onCreateDrawableState(int extraSpace) {    final int[] drawableState = super.onCreateDrawableState(extraSpace + 2);    if (mIsFried) {        mergeDrawableStates(drawableState, STATE_FRIED);    }    if (mIsBaked) {        mergeDrawableStates(drawableState, STATE_BAKED);    }    return drawableState;}

Finally, the most delicate piece of this puzzle; the selector defining the StateListDrawable that you will use as a background for your widget. This is file "res/drawable/food_button.xml":

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res/com.mydomain.mypackage"><item    app:state_baked="true"    app:state_fried="false"    android:drawable="@drawable/item_baked" /><item    app:state_baked="false"    app:state_fried="true"    android:drawable="@drawable/item_fried" /><item    app:state_baked="true"    app:state_fried="true"    android:drawable="@drawable/item_overcooked" /><item    app:state_baked="false"    app:state_fried="false"    android:drawable="@drawable/item_raw" /></selector>

Notice the "app:" prefix, whereas with standard android states you would have used prefix "android:". The XML namespace is crucial for a correct interpretation by the inflater and depends on the type of project in which you are adding attributes. If it is an application, replace com.mydomain.mypackage with the actual package name of your application (application name excluded). If it is a library you must use "http://schemas.android.com/apk/res-auto" (and be using Tools R17 or later) or you will get runtime errors.

A couple of notes:

  • It seems you don't need to call the "refreshDrawableState" function, at least the solution works well as is, in my case

  • In order to use your custom class in a layout xml file, you will have to specify the fully qualified name (e.g. com.mydomain.mypackage.FoodButton)

  • You can as weel mix-up standard states (e.g. android:pressed, android:enabled, android:selected) with custom states, in order to represent more complicated state combinations


This thread shows how to add custom states to buttons and the like. (If you can't see the new Google groups in your browser, there's a copy of the thread here.)


Please do not forget to call refreshDrawableState within UI thread:

mHandler.post(new Runnable() {    @Override    public void run() {        refreshDrawableState();    }});

It took lot of my time to figure out why my button is not changing its state even though everything looks right.