不确定如何修复XML解析错误

时间:2014-02-23 19:46:09

标签: java android xml

我知道Android应用程序开发,我正在关注http://developer.android.com/training/basics/firstapp/building-ui.html#Weight(官方的官方网站上的教程。我正在尝试运行我的代码,我想我已经完全按照所示的方式复制了它教程提供了它。但是我一直收到一个关于“错误传递xml没有很好形成(无效令牌)的错误。我认为这意味着我在某个地方做了一个小错字,但我似乎无法找到它。

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout 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"
        android:orientation="horizontal" >
        <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>

1 个答案:

答案 0 :(得分:0)

看来我没有使用edit_message保存字符串文件。这似乎已经解决了这个错误。很抱歉发布了这么愚蠢的问题。