2014-12-08 109 views
0

不管我怎麼努力我仍然得到這個錯誤:沒有啓動活動找到 - 安卓

[2014-12-07 19:29:19 - ---] No Launcher activity found! 
[2014-12-07 19:29:19 - ---] The launch will only sync the application package on the device! 

我相信我已經正確設置了清單,但Eclipse的仍然給我的錯誤

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

看起來正確..在eclipse中嘗試:Project - > Clean - > All - > Clean! – 2014-12-08 01:23:08

+0

你有一個叫Splash的活動,對嗎?這可能是一個愚蠢的qusetion,但更好的確保比抱歉大聲笑 – Leonardo 2014-12-08 01:29:37

+0

也嘗試使用完整的包名稱啓動器活動(例如,com.youdomain.yourapp.Splash)。 – 2014-12-08 01:34:16

回答

0

找到只是Eclipse。當我將其導出並在我的設備上運行該項目時,該項目起作用。