0

初めての Android アプリを作成しようとしています。私はエクリプスを使用しています。プロジェクトを作成し、自分でコードを追加する前に、既定のプロジェクトを実行すると、エミュレーターで「Hello, MyApp」が表示されます。

すべて良い。

次に、プロジェクトの作成時に追加したテキストの下にある「avtivity」にボタンをドラッグ アンド ドロップします。

突然、XML エラーが発生しました。

[2012-06-02 18:03:48 - FuelLogger] res\layout\main.xml:0: error: Resource entry main is already defined.
[2012-06-02 18:03:48 - FuelLogger] res\layout\main.out.xml:0: Originally defined here.
[2012-06-02 18:03:48 - FuelLogger] D:\Android\eclipse\Workspace\res\layout\main.out.xml:1: error: Error parsing XML: no element found
[2012-06-02 18:03:49 - FuelLogger] Error in an XML file: aborting build.

新しいファイル main.out.xml が作成されました。

あれは何でしょう?空っぽです。

私の main.xml は次のようになります。

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

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>

「Graphical Layout」タブを見ると、問題ないように見えます...

ここで明らかに何かが欠けています。誰かが助けてくれることを願っています。

4

4 に答える 4

2

main.xml を選択し、コード ウィンドウで開いていると思います。次に、EclipseのRUNボタンを押します。エラーが発生します。

まず最初に: DELETE : main.out.xml res\layout\ フォルダから

プロジェクトを実行するには:

「プロジェクトエクスプローラー」を開きます

プロジェクトを右クリックし、

[別のユーザーとして実行] をクリックします

Android アプリケーションをクリックします。

于 2012-06-02T08:16:16.257 に答える
1

res/layout フォルダーから main.xml.out ファイルを削除し、アプリケーションをクリーンアップしてビルド/実行します。Eclipse からファイルを削除できない場合は、ワークスペースからファイルを削除し、アプリケーションをクリーンアップしてビルド/実行します。

于 2012-06-02T08:17:37.963 に答える
1

main.out.xml を削除し、クリーニング後に Android アプリケーションとして実行します。 ここに詳細な説明があります 同様の問題の回答: main-out-xml-parsing-error

于 2012-06-02T08:18:33.560 に答える
0

また、ここを見たいと思うかもしれません。main.out.xml が問題の原因であるというあなたの質問に関連しているようです...

于 2012-06-02T08:17:45.470 に答える