Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android AVD on Eclipse shows 'Blank Screen' with no activity

When I start my AVD emulator, the emulator just shows blank screen with 'android' written at the center. I waited for half an hour but nothing changed.

I am using Android SDK 2.1 and Eclipse 3.5

like image 768
Pavan Avatar asked May 06 '10 03:05

Pavan


People also ask

Why is my emulator not working Android studio?

If the emulator fails to launch due to the error vulkan-1. dll cannot be found , you probably need to update the emulator. To update the emulator in Android Studio, go to Tools > SDK Manager and install the latest stable version of Android platform.

Why is my AVD Manager not working?

SDK Build Tools are not installed If it fails then you may have to install it again. You look at the build tab at the bottom of the screen, it will display the error message and option to install the Build tools. Install it and you should be able to see the AVD Manager. Another way is to go to the SDK Manager.


2 Answers

I see that quite a lot. In my case, I can clear it by shutting the emulator window, doing 'adb kill-server' followed by 'adb start-server', then restarting the emulator. I have also had more success launching the emulator first before letting the debugger launch it when I start debugging.

like image 129
Rob Kent Avatar answered Oct 22 '22 09:10

Rob Kent


I was faced with a blank black screen after the emulator was started by Titanium and none of the emulator buttons such as Menu or Home did anything.

To fix it I entered the following commands from the sdk / tools directory:

android list avd 

This listed the emulator images. In my case it listed two:

Available Android Virtual Devices:
    Name: titanium_3_WVGA854
    Path: C:\Users\xxx\.android\avd\titanium_3_WVGA854.avd
  Target: Android 1.6 (API level 4)
    Skin: WVGA854
  Sdcard: C:\Users\xxx\.titanium\android.sdcard
---------
    Name: titanium_8_WVGA854
    Path: C:\Users\xxx\.android\avd\titanium_8_WVGA854.avd
  Target: Google APIs (Google Inc.)
          Based on Android 2.2 (API level 8)
    Skin: WVGA854
  Sdcard: C:\Users\xxx\.titanium\android.sdcard

In my case I wanted the Android 2.2 API so I entered

emulator @titanium_8_wvga854
like image 21
David Silva Smith Avatar answered Oct 22 '22 10:10

David Silva Smith