programmatically update android Vector Drawable

后端 未结 3 1697
悲&欢浪女
悲&欢浪女 2020-12-03 16:39

I have a VectorDrawable consists of 9 rectangles. This is defined as an XML in the the drawables folder. I have this set as the background for an ImageView that I have dec

3条回答
  •  心在旅途
    2020-12-03 17:20

    In short:

    1. You don't have a direct access to the inner elements in VectorDrawable.
    2. AnimatedVectorDrawable only has access to inner elements.
    3. Use AnimatedVectorDrawable to simulate what you need.

    Long:

    1. You don't have access

    Looking at the source code for VectorDrawable will show that the inner elements information is stored in an inner private state class VectorDrawableState. The only method to expose the inner element by name is getTargetByName, but unfortunately it is package private (default) - you can't use it (unless you use reflection).

    2. AnimatedVectorDrawable only has access

    getTargetByName is only being used by AnimatedVectorDrawable, as we can find by searching for usages of the method.

    3. Use AnimatedVectorDrawable

    So now that we see that this is the only available option, for example, we can try the following to change the color of element "rect2" from white to black:

    change_color.xml:

    
        
    
    

    animation.xml:

    
        
    
    

    and use the approach described here.

    Note

    If the above is still not an option for you, you can try the following:

    • Copy the entire VectorDrawable and tweak it (not tested)
    • Use reflection for getTargetByName to get the inner element. You will need to make sure to mutate the object first.

提交回复
热议问题