Android Studio中有多个根标签

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

我在 和 之前的括号中得到错误

回答:

只需在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>

以上是 Android Studio中有多个根标签 的全部内容, 来源链接: utcz.com/qa/423123.html

回到顶部