我尝试使用6种不同的ImageButtons创建一个布局,甚至在阅读了许多布局教程和文档后,我也无处可去。 我想创建这个: 永远是肖像,图像'个体高度&宽度必须保持相同的比例,锚定到屏幕底部,系统导航按钮显示:
----------------------------
| |
| |
| |
| |
| BACKGROUND |
| |
| |
| |
| |
| |
|--------------------------|
| SM | MD | LG |
|--------------------------|
| FirstNight |
|--------------------------|
| NightWith |NightWithout|
----------------------------
以下是我对ImageButtons Night,NightWithConstable和NightWithoutConstable的最新版本代码。代码的结果与预期完全不同:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/appsalempicsmaller"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:layout_alignParentBottom="true" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/nightWithConstableButton"
android:src="@drawable/buttonnightwithconstable"
android:clickable="true"
android:scaleType="fitStart"
android:background="#00ffffff"
android:adjustViewBounds="true"
android:layout_gravity="bottom"
android:onClick="nightButtonOnClick"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="false"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/nightWithoutConstableButton"
android:src="@drawable/buttonnightwithoutconstable"
android:scaleType="fitStart"
android:background="#74ffffff"
android:clickable="true"
android:adjustViewBounds="true"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/nightWithConstableButton" />
</LinearLayout>
<ImageButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/firstNightButton"
android:src="@drawable/buttonfirstnight"
android:scaleType="fitStart"
android:background="#7cffffff"
android:clickable="true"
android:adjustViewBounds="true"
android:baselineAlignBottom="false"
android:onClick="firstNightButtonOnClick"
android:layout_above="@+id/nightWithConstableButton" />
</RelativeLayout>
我甚至对SM,ND和LG按钮的布局感到困扰,因为我显然已经遗漏了一些基本的东西。
赞赏创建所需布局的输入和sage建议。
答案 0 :(得分:0)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:layout_alignParentBottom="true" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="4"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/linerLayout">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/sm"
android:layout_weight="1"
android:src="@drawable/ic_bdm"
android:clickable="true"
android:scaleType="fitStart"
android:background="#00ffffff" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/md"
android:src="@drawable/ic_bdm"
android:clickable="true"
android:layout_weight="1"
android:scaleType="fitStart"
android:background="#00ffffff"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/Lg"
android:layout_weight="1"
android:src="@drawable/ic_bdm"
android:clickable="true"
android:scaleType="fitStart"
android:background="#00ffffff" />
</LinearLayout>
<ImageButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/FirstNight"
android:src="@drawable/ic_bdm"
android:clickable="true"
android:scaleType="fitStart"
android:background="#00ffffff" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/NightWith"
android:layout_weight="1"
android:src="@drawable/ic_bdm"
android:clickable="true"
android:scaleType="fitStart"
android:background="#00ffffff"
android:onClick="nightButtonOnClick" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/NightWithout"
android:src="@drawable/ic_bdm"
android:clickable="true"
android:layout_weight="1"
android:scaleType="fitStart"
android:background="#00ffffff"
android:onClick="nightButtonOnClick"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>