私はこのチュートリアルに従おうとしています: http://developer.android.com/training/basics/firstapp/building-ui.html私はアンドロイド開発に慣れていないので、これは私の "activity_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="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
[実行] をクリックすると、「XML コンテンツがありません。ドキュメントにルート ビューまたはレイアウトを追加してください」というエラーが表示されます。そして、「activity_main.out.xml」という名前の新しいファイルが生成されていることに気付きました。私は何が間違っているのでしょうか?