在此行找到多个注释

时间:2014-03-19 20:38:58

标签: android android-layout

在此行找到多个注释: - 错误:解析XML时出错:文档元素之后的垃圾根元素之后的文档中的标记必须格式正确。

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="com.example.onyourcar.MainActivity"
        tools:ignore="MergeRootFrame" />

    <TextView
        android:id="@+id/hello"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />

1 个答案:

答案 0 :(得分:0)

默认的texview就是这样

 <TextView
        android:id="@+id/theTextViewIdHere"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

尝试使用相对/线性布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:id="@+id/hello"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

</RelativeLayout>

如果你想使用FrameLayout点击谷歌代码

我对你的问题的第一个猜测是最后一行工具:context&#39;尝试删除该行。如果这不适用于整个XML文件。

希望这会有所帮助。