Android图片按钮边距

时间:2012-11-09 20:43:26

标签: android image button margin

所以我是android编程的新手,我正试图将三个图像按钮连续放在一起。

问题是我无法摆脱它们之间的空间并添加* android:layout_marginLeft =“0dp”*和* android:layout_marginRight =“0dp”*它们中的每一个都无法正常工作我猜。我正在使用相对布局。

谢谢你的帮助!

这是XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageButton
    android:id="@+id/ib_3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_margin="0dp"
    android:src="icon2" />
<ImageButton
    android:id="@+id/ib_2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"
    android:layout_toLeftOf="@id/ib_3"
    android:src="icon2" />
<ImageButton
    android:id="@+id/ib_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toLeftOf="@id/ib_2"
    android:layout_margin="0dp"
    android:src="icon1" />

1 个答案:

答案 0 :(得分:4)

将图像按钮的背景设置为null。 ImageButtons具有在制造商

上展示的默认背景
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageButton
    android:id="@+id/ib_3"
    android:background="@null"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_margin="0dp"
    android:src="icon2" />
<ImageButton
    android:id="@+id/ib_2"
    android:background="@null"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"
    android:layout_toLeftOf="@id/ib_3"
    android:src="icon2" />
<ImageButton
    android:id="@+id/ib_1"
    android:background="@null"
    android:layout_width="wrap_content"    
    android:layout_height="wrap_content"
    android:layout_toLeftOf="@id/ib_2"
    android:layout_margin="0dp"
    android:src="icon1" />