我正在尝试创建一个菜单,该菜单将容纳四个彼此相邻的 ImageButton,并且大小是相对的,以支持不同的屏幕分辨率。
在菜单下方,我需要一个额外的小图像按钮。
下面是它在 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
你能建议另一种方法来构建它吗?