If I run an application on my Motorola Xoom tablet, there is an image in the background. If I run the same application on the emulator the background in my application is just black. Do you have an idea where I can get this image, which is in the background of Xoom applications?

I need it, because I took a number of screenshots of the app in the emulator for documentation purposes and it doesn't look very good with the black background.

link|improve this question

are you sure you've set up your emulator to run the same version of Android as your xoom? – Dr.Dredel Oct 30 '11 at 17:37
Yes I am. It is 3.1 on both. – Franziskus Karsunke Oct 30 '11 at 18:30
feedback

2 Answers

up vote 3 down vote accepted

This image is the window background. The default window background is specified using a state list. As the image used for this is stretched - a cheap operation with hardware accelerated drawing but more expensive in software - the state list specifies this background for the android:state_accelerated case. Since the emulator does not currently support hardware accelerated drawing it gets the fallback of solid black instead.

link|improve this answer
Thank you. This explains the problem, but do you know where I can find the background image for the accelerated state? Maybe somewhere in the sdk folder? – Franziskus Karsunke Oct 30 '11 at 18:32
It's a private framework resource. You could probably go digging in framework-res.jar for it, or wait for the Android 4.0 source release. – adamp Oct 31 '11 at 0:57
After pulling the framework-res.apk from the device and searching I just found the image in the res/drawable-nodpi folder. The name of the file is background_holo_dark.png. Thank you very much for your help adamp :) – Franziskus Karsunke Oct 31 '11 at 12:17
feedback

Just for completion, here is the image I was searching for:

Here is the image

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.