Android Studio中的多个根标签

时间:2014-06-18 00:58:20

标签: java android android-layout android-fragments

我正在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"/>

我在 EditText 之前和 按钮

之前的括号中收到错误

1 个答案:

答案 0 :(得分:13)

因为在Android中每个xml文件都必须只有一个根布局。只需在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>