1

所以我是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" />

4

1 回答 1

4

tru 将 imagebutton 的背景设置为空。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" />
于 2012-11-09T21:10:51.310 回答