我正在尝试http://developer.android.com/上的教程 并且在AndroidManifest.xml文件中遇到错误。发生的事情是,我在创建活动时犯了一个错误(在键入“Hierachical Parent”时出错)并且对这个和所有人都是新手,无法找到如何更改它。因此,作为我的新手,我删除了Display_activiy_main.xml,Display_fragment_main和相应的.java文件。我在这里尝试了一些解决方案,例如评论额外的清单标签,清理项目和CTRL + SHIFT + F.但我仍然明白这一点:
[2014-03-21 23:54:47 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Parser exception for C:\Users\Amos\workspace\MyFirstApp2\AndroidManifest.xml: The markup in the document preceding the root element must be well-formed.
[2014-03-21 23:54:50 - MyFirstApp2] Parser exception for /MyFirstApp2/AndroidManifest.xml: The markup in the document preceding the root element must be well-formed.
[2014-03-21 23:54:50 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Parser exception for C:\Users\Amos\workspace\MyFirstApp2\AndroidManifest.xml: The markup in the document preceding the root element must be well-formed.
这是我的AndroidManifest.xml
<<<<<<< Original
<<<<<<< Original
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp2"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.myfirstapp2.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
<!-- ======= -->
<!-- <manifest xmlns:android="http://schemas.android.com/apk/res/android" > -->
<!-- <application> -->
<!-- <activity android:name="com.example.myfirstapp2.DisplayMainActivity" -->
<!-- android:label="@string/title_activity_display_main" -->
<!-- android:parentActivityName="com.example.myfirstapp2.MainActivity"> -->
<!-- <meta-data android:name="android.support.PARENT_ACTIVITY" -->
<!-- android:value="com.example.myfirstapp2.MainActivity" /> -->
<!-- </activity> -->
<!-- </application> -->
<!-- </manifest> -->
<!-- >>>>>>> Added -->
<!-- ======= -->
<!-- <manifest xmlns:android="http://schemas.android.com/apk/res/android" > -->
<!-- <application> -->
<!-- <activity android:name=".DisplayMainActivity" -->
<!-- android:label="@string/title_activity_display_main" -->
<!-- android:parentActivityName="com.example.myfirstapp2.MainActivity"> -->
<!-- <meta-data android:name="android.support.PARENT_ACTIVITY" -->
<!-- android:value="com.example.myfirstapp2.MainActivity" /> -->
<!-- </activity> -->
<!-- </application> -->
<!-- </manifest> -->
<!-- >>>>>>> Added -->
我知道这是一个教程和所有,我可以删除整个项目并重新开始,但我真的想知道:
谢谢!
答案 0 :(得分:2)
我在哪里出错了
不确定为什么你有这个
<<<<<<< Original
<<<<<<< Original
但请从manifest.xml
中删除。它不应该存在,并且不是xml的正确语法,因此您收到错误。
有没有更好的方法来删除项目文件而不会弄乱AndroidManifest.xml?
不确定你做了什么导致这一点,但通常不应该是一个问题。您只需删除不需要的文件,有时您可能必须删除关联的resource
文件,Java文件等...如果您想重命名或移动文件,还有一个方便的重构工具。