11_22_33
11_22_33

Reputation: 86

How can I remove white spaces around an ImageButton?

How can I remove the white spaces around these ImageButtons?

ImageButtons

This is sample code for one one of the ImageButton:

<ImageButton
        android:id="@+id/imageButton3"
        android:layout_width="64dp"
        android:layout_height="56dp"
        android:src="@drawable/ic_circulo"
        app:layout_constraintBottom_toTopOf="@+id/imageButton2"
        app:layout_constraintStart_toStartOf="parent" />

Thanks in advance.

Upvotes: 2

Views: 106

Answers (1)

Android Killer
Android Killer

Reputation: 18499

Try this :

android:background="@null" or 
android:background="#00000000"

Upvotes: 1

Related Questions