Merge \\"Disable constant state sharing for VectorDrawable\\" into nyc-dev am: f66bdf9b57

am: 25242a7bbc

Change-Id: I20e41c6ebbac82fd70ae3d724e484eac78d2b308
This commit is contained in:
Alan Viverette
2016-06-29 17:05:36 +00:00
committed by android-build-merger

View File

@@ -243,7 +243,9 @@ public class VectorDrawable extends Drawable {
* constructors to set the state and initialize local properties.
*/
private VectorDrawable(@NonNull VectorDrawableState state, @Nullable Resources res) {
mVectorState = state;
// Constant state sharing is disabled until we fix onStateChanged()
// affecting the shared bitmap.
mVectorState = new VectorDrawableState(state);
updateLocalState(res);
}