我正在尝试创建一个菜单,它可以将四个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
你能建议另一种方法吗?
答案 0 :(得分:0)
问题解决了。 我忘了还有另一个布局(母版页),它实际上是主布局的父级,而且是高度=换行内容
谢谢:)