多个根标签错误

时间:2015-04-05 12:11:03

标签: android android-studio compiler-errors

我是Android开发和编程的新手。我试着写一些布局代码,但我得到了

Multiple root tags error

任何可以帮助我的人?​​

<?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="wrap_content"
    android:orientation="vertical">

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="This is my first android app!" />

<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Button!" />

</LinearLayout>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Hello!" />

    <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="This is my first android app!" />

    <Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Button!" />

</LinearLayout>

我能够通过这种方式修复它,但是如果在我放置的第一个TextView文本中它不起作用&#34; @ string / Hello&#34;谁能告诉我为什么?

1 个答案:

答案 0 :(得分:3)

试试这个:

<?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="wrap_content"
        android:orientation="vertical">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="This is my first android app!" />

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Button!" />

    </LinearLayout>