在Android中找不到Launcher活动

时间:2013-06-22 20:40:19

标签: android

这超出了我的困扰,我看了其他人类似的问题,但我无法想出这一个!请帮我!

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">
        <activity
            android:screenOrientation="portrait"
            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>
        <activity
            android:screenOrientation="portrait"
            android:name=".MenuActivity"
            android:label="@string/app_name" >
        </activity>
    </application>

</manifest>

非常感谢所有帮助!

1 个答案:

答案 0 :(得分:1)

尝试:

<action android:name="android.intent.action.MAIN" />

而不是

<action android:name="android.intent.action.Main" />