android how to change width and height

This is kind of a workaround, but it worked for me.
You can use padding in order to make the second drawable smaller.

<item android:drawable="@drawable/circyle" />

<item
    android:drawable="@drawable/plus" 
    android:top="10dp"
    android:bottom="10dp"
    android:right="10dp"
    android:left="10dp" />

Leave a Comment