0

对不起我的英语不好,我有错误我看不到,因为我错过了“删除”,但我记得那是“=”字符。

这是代码,有人可以帮忙吗?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <ImageView
        android:id="@+id/mainMenuImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/businessdisaster">

    </ImageView>


    <RelativeLayout
        android:id="@+id/buttons"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom
        android:layout_marginBottom="20dp"
        android:orientation="horizontal" >

        <ImageButton
        android:id="@+id/btnStart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:clickable="true"
        android:src="@drawable/startselector">
    </ImageButton>

        <ImageButton
        android:id="@+id/btnExit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:clickable="true"
        android:src="@drawable/exitselector">
    </ImageButton>

        </RelativeLayout>
</RelativeLayout>
4

2 回答 2

0

这是什么?您的 xml 格式不正确

<RelativeLayout
        android:id="@+id/buttons"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom
        android:layout_marginBottom="20dp"
        android:orientation="horizontal" >

解决方案

你必须这样做

<RelativeLayout
        android:id="@+id/buttons"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="20dp"
        android:orientation="horizontal" >
于 2013-09-01T12:42:00.820 回答
-1

RelativeLayout 没有“方向”属性。尝试删除它。

于 2013-09-01T12:08:57.503 回答