我想制作一个类似this链接上显示的布局。 只是一个图像和屏幕按钮上的2个简单按钮,我正在尝试使用此代码:
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/maxsapImg" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:scaleType="center" android:src="@drawable/golden_gate">
</ImageView>
<RelativeLayout android:id="@+id/InnerRelativeLayout"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<Button android:text="@string/camera" android:id="@+id/camerBtn"
android:layout_alignParentBottom="true" android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
<Button android:text="@string/local" android:id="@+id/localBtn" android:layout_width="wrap_content"
android:layout_toLeftOf="@+id/camerBtn" android:layout_height="wrap_content">
</Button>
</RelativeLayout>
</RelativeLayout></merge>
但到目前为止还没有任何想法?
答案 0 :(得分:1)
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/maxsapImg" android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center" android:src="@drawable/golden_gate"/>
<RelativeLayout android:id="@+id/InnerRelativeLayout"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentBottom="true" android:layout_centerHorizontal="true">
<Button android:text="@string/camera" android:id="@+id/camerBtn"
android:layout_width="wrap_content" android:layout_height="wrap_content"/>
<Button android:text="@string/local" android:id="@+id/localBtn" android:layout_width="wrap_content"
android:layout_toLeftOf="@+id/camerBtn" android:layout_height="wrap_content"/>
</RelativeLayout>
</RelativeLayout>
</merge>
答案 1 :(得分:1)
我在RelativeLayout标签中添加了android:orientation =“horizontal”,并在第二个按钮标签中将leftOf更改为android:layout_toRightOf =“@ + id / camerBtn”
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true">
<Button
android:text="@string/camera"
android:id="@+id/camerBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="@string/local"
android:id="@+id/localBtn"
android:layout_width="wrap_content"
android:layout_toRightOf="@+id/camerBtn"
android:layout_height="wrap_content" />
</RelativeLayout>
这对我有用