/MyFirstApp/AndroidManifest.xml:元素类型"活动"必须遵循属性规范,">"或" />"

时间:2014-10-14 18:37:36

标签: android xml

我搞砸了xml文件,同时使用动作栏制作googles示例myfirstapp。请帮忙。我是n00b。这是xml文件的完整代码。          

    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="21" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name=".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
            android:name=".DisplayMessageActivity"
            android:label="@string/title_activity_display_message"
            android:parentActivityName="com.myfirstapp.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.myfirstapp.MainActivity" />
        </activity>

    </application>

</manifest>

1 个答案:

答案 0 :(得分:0)

你错过了第一项活动的结束</activity>,它看起来像。并打开xml声明:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="<your package>"
    android:versionCode="1"
    android:versionName="dev">

...

查看清单上的文档:http://developer.android.com/guide/topics/manifest/manifest-intro.html