1. ホーム
  2. java

[解決済み] Android Studioで複数のルートタグが表示される [重複]。

2022-02-26 19:51:33

質問

Android Studioでfragment_main.xmlを編集しているのですが、このエラーが発生します。

複数のルートタグ

ここで問題になっているコードブロックは

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

</LinearLayout>
<EditText   <!--Error here in the bracket-->
android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button    <!--Error here in the bracket-->
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"/>

の前の括弧の中でエラーが発生します。 テキストを編集する とその前に ボタン

解決するには?

Androidでは、すべてのxmlファイルに1つのルートレイアウトが存在する必要があるためです。 LinearLayoutの中にEditTextとButtonを追加するだけです。正しいコードは以下の通りです。

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

    <EditText  
        android:id="@+id/edit_message"
        android:layout_width="wrap_content"
        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" />

</LinearLayout>