appears in main. xml-6ren"> appears in main. xml-我正在尝试在 Eclipse 中创建一个 Android 项目。在菜单目录中,我试图替换现有 main.xml 的内容。但是 无论我删除多少次,它都会一直显示在我的 main.xml 的最底端。到-6ren">
gpt4 book ai didi

android - <菜单 xmlns :android ="http://schemas.android.com/apk/res/android"> appears in main. xml

转载 作者:行者123 更新时间:2023-11-29 01:48:06 28 4
gpt4 key购买 nike

我正在尝试在 Eclipse 中创建一个 Android 项目。在菜单目录中,我试图替换现有 main.xml 的内容。但是

 <menu xmlns:android="http://schemas.android.com/apk/res/android"></menu> 

无论我删除多少次,它都会一直显示在我的 main.xml 的最底端。到底是怎么回事? Eclipse 中是否有某种类型的设置需要关闭。

在 Eclipse 中,一条错误消息出现在以下行的旁边:

“文档中跟在根元素之后的标记必须格式正确。”

我想用以下内容替换 main.xml:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
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/hello" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtSpace" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtFirstNumber" />
<EditText
android:inputType="numberDecimal"
android:id="@+id/EditText01"
android:layout_width="fill_parent"
android:layout_height="wrap_content" > </EditText>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtSpace" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtSecondNumber" />
<Button
android:text="Multiply"
android:id="@+id/Button01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"> </Button>
</LinearLayout>

最佳答案

我也有这个问题。

检查您的 Eclipse 设置:

窗口 -> 首选项 -> Java -> 编辑器 -> 保存操作 |保存时执行选定的操作

关于android - <菜单 xmlns :android ="http://schemas.android.com/apk/res/android"></menu> appears in main. xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20145951/

28 4 0