我知道 R.Java 或资源文件夹可能会由于 XML 布局文件的问题而消失。我确实对此文件进行了一些更改,但确保我已经很好地清理了项目等。但是我仍然遇到“在文档元素后解析 XML 垃圾错误”错误。她是我下面 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:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/main_title" />
<EditText
android:id="@+id/edit_message"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:ems="10"
android:hint="@string/edit_message"
android:inputType="number" />
</EditText>
<Button
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/check" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:onClick="checkNumbers"
android:text="@string/button_check" />
</LinearLayout>