本文介绍了错误的解析XML:没有找到元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

首先原谅我,如果我发布了这个问题错了。我用计算器对于很多问题,但这是我第一次想不出已经找到一个答案我的问题。所以,如果我做错了,请让我知道,我会重新发布/编辑的问题。

现在你们的业务。我最近刚刚开始发展瓦特/ Android SDK中,我从以下http://developer.android.com/resources/tutorials/hello-world.html#avd
我已经得到了XML编辑工作的一部分,当我使所有更改的XML文件的main.xml和strings.xml中出现此错误。此外,当我编译项目,编译过程生成一个main.out.xml文件是空的。我不知道它是什么或它的目的。

错误:

My project is setup for platform: Android 2.3.3 API Level: 10

I don't know if it makes a difference or not but I'm using my Android Incredible for running/debugging the application not a Android Virtual Device. If there is any more information needed let me know and I'll post it ASAP.

Here are the three code files I'm using:

main.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView  xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:text="@string/hello_O" />

strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello_O">Baba in the house, Razor Activity!</string>
<string name="app_name">Hello Razor App</string>
</resources>

razorActivity.java

package hello.Razor;

import android.R;
import android.app.Activity;
import android.os.Bundle;

    public class razorActivity extends Activity
    {
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState)
        {
           super.onCreate(savedInstanceState);
           setContentView(R.layout.main);
        }
    }
解决方案

delete the main.out.xml in project view and re-run as android application

这篇关于错误的解析XML:没有找到元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-17 04:31
查看更多