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 に答える