Android app not showing in emulator

I installed eclipse, android sdk, created AVD (tried with different versions), then created a simple global hello program (autogenerated).

When I run it, it should load and show the helloworld screen ... but nothing happens. The emulator just loads up and shows the Android home screen. My application is nowhere to be seen.

Log:

[2012-05-19 19:09:34 - GameTest] Android Launch!
[2012-05-19 19:09:34 - GameTest] adb is running normally.
[2012-05-19 19:09:34 - GameTest] Performing org.test.game1.GameTestActivity activity launch
[2012-05-19 19:09:34 - GameTest] Automatic Target Mode: launching new emulator with compatible AVD 'def_avd'
[2012-05-19 19:09:34 - GameTest] Launching a new emulator with Virtual Device 'def_avd'

What is it...

What is wrong and how can I download my program?

Some clarifications: I tried to run the emulator in advance, and then run my application. I tried to run the emulator directly from eclipse "Run as an Android application", but still the same.

+3
source share
8 answers

, , .

Android-, , usb "debug as android application", 3 4 Android.

, USB, .

+3

XML AndroidManifest.xml

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

xml,

+6

.

.

adb Windows

.

+2

, avd , , , Android. .

+2

, , , Android Studio 2.1.

"" AVD, , AVD, . , " ", AVD , , "", AVD, . , !

, , , - . , , , .

+1

, :

  • ,
  • :

    > adb kill-server
    > adb start-server
    
  • Eclipse?

  • .

  • ,

0

" " , . , .

0

Android

0

All Articles