I am trying to set a SVG Icon as the background of an Android ImageView. The SVG Icon will receive some padding and colors are being changed a little.
<ImageView
android:id="@+id/passwordLabel"
android:layout_width="50dp"
android:layout_height="50dp"
android:background="@android:color/black"
android:padding="30px"
android:tint="@android:color/white"
app:srcCompat="@drawable/ic_lock"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="524dp" />
Is there a way to make the ImageView circular now? I have tried other solutions but am confused, as they demand me to change the background.