In android I have read a few articles on how drawables share a constant state. So if you make a change to a drawable it affects all the same bitmaps. For example lets say you had a list of star drawables. changing the alpha on one will change all the star drawables alpha. but you can use mutate to get your own copy of a drawable with no shared state.
The article I was reading is here
Now onto my question:
What is the difference between the following two calls in android:
Drawable clone = drawable.getConstantState().newDrawable();
// vs
Drawable clone = (Drawable) drawable.getDrawable().mutate();
For me they are both cloning a drawable as they both return a drawable that has no shared state. Am I missing something ?
As @4castle pointed in comments
mutate()
method returns same instance of the drawable with copied constant drawable state. Docs says thatSo it is safe to change a drawable without affecting drawables with the same state
Lets play with this drawable - a black shape
The opposite method is
newDrawable()
. It creates a new drawable but with the same constant state. E.g. look atBitmapDrawable.BitmapState
:Changes to new drawable will not affect current drawable, but will change a state: