0

Androidで初心者向けチュートリアルを開始したばかりで、コードが基本的にWebページからコピーされ、すべての手順に従っているにもかかわらず、コンパイル時に4つのエラーが発生します。エラーは次のとおりです。

  • 要素タイプ「LinearLayout」の後には、属性指定「>」または「/>」が続く必要があります。activity_main.xml /test/res/layout 行 6 Android XML 形式の問題
  • R を変数に解決できない MainActivity.java /test/src/com/example/test 行 12 Java 問題
  • R を変数に解決できない MainActivity.java /test/src/com/example/test 行 19 Java 問題
  • エラー: XML の解析中にエラーが発生しました: 整形式ではありません (無効なトークン) activity_main.xml /test/res/layout 行 6 Android AAPT の問題]

コードは次のとおりです: activity_main.xml

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" 

        <EditText android:id="@+id/edit_message"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:hint="@string/edit_message"
            android:layout_weight="1" />

        <Button android:layout_width="wrap content"
            android:layout_height="wrap_content"
            android:text="@string/button_send" /> 

    </LinearLayout>

MainActivity.java

    package com.example.test;

    import android.os.Bundle;
    import android.app.Activity;
    import android.view.Menu;

    public class MainActivity extends Activity {

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }


        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.main, menu);
            return true;
        }

    }

私はあらゆる場所を検索し、すべてを試しましたが、それでもうまくいかないので、これが私の最後の望みです。ありがとう!

4

2 に答える 2

2

LinearLayout タグを閉じる必要があります。

すなわち

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" <-- close here

このような

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" >
于 2013-04-17T18:02:53.837 に答える
0
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <EditText android:id="@+id/edit_message"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message"
        android:layout_weight="1" />
    <Button android:layout_width="wrap content"
        android:layout_height="wrap_content"
        android:text="@string/button_send" /> 
</LinearLayout>

これをコピーし、プロジェクトをクリーンアップして実行します。EditText の前に LinearLayout タグを終了していません。

于 2013-04-17T18:05:59.603 に答える