-1
我試圖創建一個菜單,它將四個ImageButton放在一起並且尺寸相對較大,以支持不同的屏幕分辨率。使用LinearLayout的四個按鈕菜單
在菜單下方,我需要一個小圖像按鈕。
這裏怎麼看起來在Eclipse:
http://i.stack.imgur.com/QMvcs.jpg
這是我如何建立它在menu.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rlMain"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/abs__background_holo_dark"
android:orientation="vertical"
android:weightSum="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.95"
android:orientation="vertical"
android:weightSum="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:orientation="horizontal"
android:weightSum="1" >
<ImageButton
android:id="@+id/newsItem"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:onClick="NewsClicked" />
<ImageButton
android:id="@+id/imageItem"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:onClick="TeamsClicked" >
</ImageButton>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:orientation="horizontal"
android:weightSum="1" >
<ImageButton
android:id="@+id/chatItem"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:onClick="ChatClicked" >
</ImageButton>
<ImageButton
android:id="@+id/teamItem"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:onClick="ImagesClicked" />
</LinearLayout>
</LinearLayout>
<ImageButton
android:layout_weight="0.05"
android:id="@+id/orderDigital"
android:layout_width="match_parent"
android:layout_height="0dp"
android:onClick="DigitalClicked" />
</LinearLayout>
但我的手機上會顯示這樣的:
http://i.stack.imgur.com/cyQoc.png
你能提出另一種方法來構建它嗎?
看看這個:http://stackoverflow.com/問題/ 10547499/android-layout-weight – ruben
已檢查。我將layout_height設置爲0(它是垂直方向),結果相同。:( –