0

「ルート要素に続くドキュメントのマークアップは整形式でなければなりません」というメッセージが表示される理由がわかりません。Android プロジェクトの res/menu の下の mainxml で次のコードを使用しようとしていました。助けてください!!!

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center_vertical|left"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <TextView
                style="@style/inputLabel"
                android:text="@string/cardHolderName" />

            <EditText
                android:id="@+id/cardHolderNameInput"
                style="@style/textInput"
                android:layout_width="fill_parent"
                android:singleLine="true" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <TextView
                style="@style/inputLabel"
                android:text="@string/cardNumber" />

            <EditText
                android:id="@+id/cardNumberInput"
                style="@style/textInput"
                android:layout_width="fill_parent"
                android:numeric="integer"
                android:singleLine="true" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <TextView
                style="@style/inputLabel"
                android:paddingRight="40sp"
                android:text="@string/expirationDate" />

            <TextView
                style="@style/inputLabel"
                android:text="@string/expirationMonth" />

            <EditText
                android:id="@+id/expirationMonthInput"
                style="@style/textInput"
                android:layout_width="50sp"
                android:numeric="integer"
                android:singleLine="true" />

            <TextView
                style="@style/inputLabel"
                android:paddingLeft="10sp"
                android:text="@string/expirationYear" />

            <EditText
                android:id="@+id/expirationYearInput"
                style="@style/textInput"
                android:layout_width="50sp"
                android:numeric="integer"
                android:singleLine="true" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <TextView
                style="@style/inputLabel"
                android:text="@string/cvv" />

            <EditText
                android:id="@+id/cvvInput"
                style="@style/textInput"
                android:layout_width="fill_parent"
                android:numeric="integer"
                android:singleLine="true" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <TextView
                style="@style/inputLabel"
                android:text="@string/amount" />

            <EditText
                android:id="@+id/amountInput"
                style="@style/textInput"
                android:layout_width="fill_parent"
                android:numeric="integer|decimal"
                android:singleLine="true" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:orientation="horizontal" >

            <Button
                android:id="@+id/submitAction"
                style="@style/action"
                android:clickable="true"
                android:text="@string/submit" />
        </LinearLayout>
    </LinearLayout>

</ScrollView>

どんな助けでも大歓迎です。ありがとう。

4

2 に答える 2

4

res/menu の下にレイアウト ファイルを配置することはできません。main.xmlファイルをに移動するres/layoutと、問題ないはずです。

于 2013-09-25T02:59:25.993 に答える
1

ほとんどの場合、要素が閉じられていないか、Android 名前空間が含まれていません。さらに明確にするために、xmlドキュメント全体を投稿してください。

編集: XML をレイアウトの下ではなくメニューの下に配置しました。

于 2013-09-25T02:51:49.207 に答える