I want to get 3 ImageButtons
in one row with the same size.
I want something this like:
<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>
I want the button to be quadtra
(width == height
). But the width is 0dp
with weight: 3. But how can I do that the buttonsheight
will be scaled?