我想ImageButtons
在一行中获得 3 个相同大小的。
我想要这样的东西:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/black"
android:orientation="vertical"
android:paddingBottom="40dp"
android:paddingTop="40dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|fill_horizontal|center"
android:gravity="fill_horizontal" >
<LinearLayout
android:id="@+id/dummy_005"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal" >
</LinearLayout>
<ImageButton
android:id="@+id/button_scan"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:background="@drawable/image_button"
android:focusableInTouchMode="true"
android:scaleType="fitCenter"
android:
android:src="@drawable/scan_symbol" />
<LinearLayout
android:id="@+id/dummy_002"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal" >
</LinearLayout>
<ImageButton
android:id="@+id/button_hitsorie"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:background="@drawable/image_button"
android:src="@drawable/historie_symbol" />
<LinearLayout
android:id="@+id/dummy_003"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal" >
</LinearLayout>
<ImageButton
android:id="@+id/button_2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:background="@drawable/image_button" />
<LinearLayout
android:id="@+id/dummy_004"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal" >
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView_result"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="@dimen/testTextSize" />
</LinearLayout>
</LinearLayout>
我希望按钮为quadtra
( width == height
)。但是宽度0dp
与重量有关:3。但是我该怎么做buttonsheight
才能缩放呢?