初めての 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」タブを見ると、問題ないように見えます...
ここで明らかに何かが欠けています。誰かが助けてくれることを願っています。