Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> android第一天錯誤,android第一天

android第一天錯誤,android第一天

編輯:關於android開發

android第一天錯誤,android第一天


1.自己寫的activity並在AndroidManifest.xml中注冊 在模擬機上運行時出現

No Launcher activity found! The launch will only sync the application package on the device!   模擬機中沒有文件    解決方法:在注冊時 AndroidManifest.xml中

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

MAIN誤寫為Main導致錯誤

 

2.項目有錯誤 但是每個文件都沒有錯誤,錯誤提示為the project was not built due to "a resource exists with adifferent case

解決方法:包名不一致 生成項目時為com.example.activitytest  自己在src中新建包時不使用這個包名導致錯誤

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved