android應用無法自動開啟異常

來源:互聯網
上載者:User

其實這個問題,算不得問題,當你開始對intent-filter有所接觸時才會碰到的。一般知道就不會再犯。

言歸正傳:

病症

控制台紅色警告:No Launcher activity found! The launch will only sync the application packag

病源

望文生義即可,系統找不到啟動的activity,當然即使你點擊了Run as ,程式上傳完後也是不會自動啟動的,因為找不到。

現在這個知道了根源,那網上有說一個實際原因就是少了下面這幾行:

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

這個錯誤一般不常見,因為這是系統自動會產生的,除非你刪除了或是手動建立第一個activity。入口Activity不能有多個action,也就是說有了<action android:name="android.intent.action.MAIN" />後,表明該Activity是應用的主入口,如果再加別的action就回報錯。解決方案,添加新的intent filter來裝action就不會有問題,如果是其他的activity是可以在一個filter中有多個action的。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.