我有一個佈局問題,我想要一個圖像位於兩個按鈕中間。所以我創建了兩個按鈕並定義了1的權重總和。然後將兩個按鈕的權重設置爲.40,將圖像設置爲.20,以便圖像在兩個按鈕的中間是一個小徽標。問題是圖像被拉伸,按鈕被推到一邊。Android:錯誤地使用imageView重新調整尺寸按鈕的佈局
<Button
android:id="@+id/buttonClear"
style="@style/ButtonText"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight=".40"
android:background="@drawable/custombuttonred"
android:text="@string/clear"
android:textSize="50sp" />
<ImageView
android:id="@+id/myimage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".20"
android:src="@drawable/imageid" />
<Button
android:id="@+id/buttonBackspace"
style="@style/ButtonText"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight=".40"
android:background="@drawable/custombuttonred"
android:text="@string/backspace"
android:textSize="20sp" />
它是否處於線性佈局?如果是的話,它的定位是什麼?如果垂直,則不應使用fill_parent作爲layout_height – viplezer 2012-03-08 11:12:22
您是否也可以列出封閉的View? – Soham 2012-03-08 11:15:36