无法在Android中运行简单的Hello World应用程序

时间:2015-06-24 15:00:49

标签: android

我正面临以下问题。

[2015-06-24 20:00:57 - MyProject] No activity specified! Getting the launcher activity.
[2015-06-24 20:00:57 - MyProject] No Launcher activity found!
[2015-06-24 20:00:57 - MyProject] The launch will only sync the application package on the device!

我的清单代码是:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hello"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="14"
    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.hello.FirstActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN">
            </action>      
            <category android:name="android.intent.category.LAUNCHER">
            </category>
        </intent-filter>
    </activity>
</application>

请帮助,因为自从过去4天以来我一直坚持这个! 感谢

1 个答案:

答案 0 :(得分:1)

而不是

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

使用

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

<action>代码是自动关闭标记,应该像<action [...] />一样关闭。