我正在开发一个android应用程序。而且我还是个XML新手。我收到的消息是“没有XML内容。请向您的文档添加一个根视图或布局”。下面给出了XML代码。请帮帮忙
<?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="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/ref"
android:textSize="15dp"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/ref2"
android:textSize="15dp"/>
<EditText
android:id="@+id/uname"
android:layout_width="150dp"
android:layout_height="25dp"
android:inputType="text"
android:ems="5" >
<requestFocus />
</EditText>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/ref3"
android:textSize="15dp"/>
<EditText
android:id="@+id/pwd"
android:layout_width="150dp"
android:layout_height="25dp"
android:inputType="text"
android:ems="5" />
<Button
android:layout_width="60dp"
android:layout_height="35dp"
android:text="@string/ref"
android:id="@+id/bLogin" />
</LinearLayout>-主要活动代码
package com.android.disasterAlertApp;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
public class MainActivity extends Activity {
/** Called when the activity is first created. */
Button login;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
login =(Button) findViewById(R.id.bLogin);
}
}
----Manifest----
[2012-04-17 00:34:20 - Disaster Alert App] res\layout\main.xml:0: error: Resource entry main is already defined.
[2012-04-17 00:34:20 - Disaster Alert App] res\layout\main.out.xml:0: Originally defined here.
[2012-04-17 00:34:20 - Disaster Alert App] C:\Users\Acer\workspace\Disaster Alert App\res\layout\main.out.xml:1: error: Error parsing XML: no element found
[2012-04-17 01:05:59 - Disaster Alert App] res\layout\main.xml:0: error: Resource entry main is already defined.
[2012-04-17 01:05:59 - Disaster Alert App] res\layout\main.out.xml:0: Originally defined here.
[2012-04-17 01:05:59 - Disaster Alert App] C:\Users\Acer\workspace\Disaster Alert App\res\layout\main.out.xml:1: error: Error parsing XML: no element found
[2012-04-17 01:11:14 - Disaster Alert App] res\layout\main.xml:0: error: Resource entry main is already defined.
[2012-04-17 01:11:14 - Disaster Alert App] res\layout\main.out.xml:0: Originally defined here.
[2012-04-17 01:11:14 - Disaster Alert App] C:\Users\Acer\workspace\Disaster Alert App\res\layout\main.out.xml:1: error: Error parsing XML: no element found
[2012-04-17 01:14:56 - Disaster Alert App] ------------------------------
[2012-04-17 01:14:56 - Disaster Alert App] Android Launch!
[2012-04-17 01:14:56 - Disaster Alert App] Connection with adb was interrupted.
[2012-04-17 01:14:56 - Disaster Alert App] 0 attempts have been made to reconnect.
[2012-04-17 01:14:56 - Disaster Alert App] You may want to manually restart adb from the Devices view.
[2012-04-17 01:17:27 - Disaster Alert App] Error in an XML file: aborting build.
[2012-04-17 01:37:10 - Disaster Alert App] res\layout\main.xml:0: error: Resource entry main is already defined.
[2012-04-17 01:38:42 - Disaster Alert App] res\layout\main.xml:0: error: Resource entry main is already defined.
[2012-04-17 01:38:42 - Disaster Alert App] res\layout\main.out.out.xml:0: Originally defined here.
[2012-04-17 01:38:42 - Disaster Alert App] C:\Users\Acer\workspace\Disaster Alert App\res\layout\main.out.out.xml:1: error: Error parsing XML: no element found
[2012-04-17 01:39:28 - Disaster Alert App] Error in an XML file: aborting build.发布于 2012-04-17 04:34:26
XML -看到‘main.out.xml’吗?这就是你用eclipse启动一个文件时发生的事情。只需删除'out‘xml并保留main.xml
当你点击播放时,一定要选择/正在编辑一个.java文件,否则eclipse将产生一个'out.xml‘并无法启动。
发布于 2012-10-24 22:28:35
我想指出的是,在ADT Preview 21中有一个bug -我在这里安装了预览工具来修复MacBook视网膜模拟器的bug:Android Emulator do not scale to 100% for Mac Book Pro with Retina Display。
但是,我现在不能打开我的任何布局,因为它们都给了我这个错误。我发现有一个解决办法:切换到XML视图并进行任何编辑-即使是单个空格。保存,然后切换回图形布局,错误就消失了。
发布于 2013-01-04 02:54:50
只需关闭eclipse并重启即可。这对我很管用。
https://stackoverflow.com/questions/10181066
复制相似问题