I'd like to modify already existing drawable objects in an external resource-file, like:
    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <drawable name="replyIcon" >
            <!--
            get icon from resources
            set color filter
            ...
            -->
        </drawable>
    </resources>
Is it possible? Because Android Studio suggests me "drawable" when I input an "<" inside a "< resources>"-file where I can also add style- and color- tags.
 
     
     
    