繼我上一個問題Fitting three buttons and a background image in android之後,我現在已經有了我想要的東西,但是現在有一個我不明白的小問題。 有三個按鈕,每個按鈕都帶有一個圖像,三個圖像的大小相同,但顯示的方式不同。圖像2從左邊界開始,但圖像1和3在左側有一個邊緣。按鈕圖片的不同行爲
從XML文件,我不明白其中的原因:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="4"
>
<ImageView
android:id="@+id/ImageView01"
android:layout_width="match_parent"
android:layout_height="5dp"
android:layout_weight="0.5"
android:scaleType="fitXY"
android:src="@drawable/sector1" />
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:drawableLeft="@drawable/agenda_izq"
android:maxLines="1"
android:text="Agenda" />
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/fondo"
android:drawableLeft="@drawable/actividades_izq"
android:maxLines="1"
android:text="Actividades" />
<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:drawableLeft="@drawable/suscribete_izq"
android:gravity="left|center_vertical|center_horizontal"
android:maxLines="2"
android:text="Recibir Información de Juventud" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="5dp"
android:layout_weight="0.5"
android:scaleType="fitXY"
android:src="@drawable/sector3" />
</LinearLayout>
我想所有這三個圖片來自左邊界開始,沒有任何餘量。
謝謝。
圖像中必須有空格。 – 2014-12-02 07:23:18
請確保,您的圖片不包含根據@MurtazaHussain所說的空白背景,另一件事是根據您的需要使用帶有weight屬性的linearlayout,這裏看起來您的計算相關的權重不正常,請正確設置它們的權重。你的問題100%。 – Radhey 2014-12-02 07:53:56