簡體   English   中英

清單格式不正確

[英]Manifest not being well-formed

有人可以看看我的Manifest.xml是什么。 Eclipse一直說“根元素前面的文檔中的標記必須格式正確。”,但是我找不到哪一部分是錯誤的。

TIA

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

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

<uses-permission android:name="android.permission.INTERNET" />

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

    <activity
        android:name=".VideoPlayerActivity"
        android:label="@string/app_name"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity
        android:name=".GetProductInformationActivity"
        android:label="@string/title_activity_get_product_information"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
    </activity>

    <activity
        android:name=".AppSettingsActivity"
        android:label="@string/title_activity_app_settings"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
    </activity>

</application>

</manifest>

您需要最后關閉節點...

</manifest>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM