2011-12-11 6 views
0

デスクトップでうまく動作していますが、2.4Ghzのインターコア2デュオを搭載した古いノートパソコンに最近インストールした場合、いくつかの問題に直面しています。アンドロイドアプリはエミュレータで起動していません

Android用のアプリをテストしてエミュレータを実行すると、起動しますが、読み込みが完了すると、ロックされた画面から開始されます。それから私はそれをロック解除し、家に帰るが、私はアプリのメニューにないように、アプリがどこにあるか見つけることができない。だから、私はアプリを読み込んでいないと思いますか?

コンソールメッセージを指定:これをしてください修正する方法

[2011-12-11 22:13:58 - ha] ------------------------------ 
[2011-12-11 22:13:58 - ha] Android Launch! 
[2011-12-11 22:13:58 - ha] adb is running normally. 
[2011-12-11 22:13:58 - ha] No Launcher activity found! 
[2011-12-11 22:13:58 - ha] The launch will only sync the application package on the device! 
[2011-12-11 22:13:58 - ha] Performing sync 
[2011-12-11 22:13:58 - ha] Automatic Target Mode: launching new emulator with compatible AVD '40' 
[2011-12-11 22:13:58 - ha] Launching a new emulator with Virtual Device '40' 
[2011-12-11 22:14:08 - Emulator] 2011-12-11 22:14:08.267 emulator-arm[2180:80b] Warning once: This application, or a library it uses, is using NSQuickDrawView, which has been deprecated. Apps should cease use of QuickDraw and move to Quartz. 
[2011-12-11 22:14:08 - ha] New emulator found: emulator-5554 
[2011-12-11 22:14:08 - ha] Waiting for HOME ('android.process.acore') to be launched... 
[2011-12-11 22:15:00 - ha] HOME is up on device 'emulator-5554' 
[2011-12-11 22:15:00 - ha] Uploading ha.apk onto device 'emulator-5554' 
[2011-12-11 22:15:01 - ha] Installing ha.apk... 

+1

ログには何が表示されますか? –

+0

こんにちは、編集の感謝をチェックしてください – MaKo

答えて

4

お知らせライン

[2011-12-11 22:13:58 - ha] No Launcher activity found! 
それは何の活動が AndroidManifest.xml

が、それは次のようになります。アプリケーションのメインとLAUNCHER活動であることを意図-フィルターを与えられていないと言う

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

続きを読む:

3

のmanifest.xmlに見て、アプリのランチャーがあるかどうか確認してください。存在する場合は、ログファイルを確認してください。

関連する問題