Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't have an Android phone right now. But in my application I need to use the accelerometer values. So I need an a simulator capable of it. How can I do this?

share|improve this question

4 Answers

The Android emulator doesn't support it itself but OpenIntents' SensorSimulator fills the void. Download and unpack the zip file, then start the standalone jar file:

$ java -jar bin/sensorsimulator.jar

Next, install SensorSimulatorSettings on the emulator using the adb tool which comes with the SDK:

$ adb -s <emulator device> install bin/SensorSimulatorSettings.apk

(run adb devices to find the emulator device name). Finally, run the installed SensorSimulatorSettings app in the emulator and enter the IP address 10.0.2.2 (despite what the SensorSimulator application might suggest. This is an alias to the loopback device of the development host so should always be valid.

share|improve this answer
Thank you, that helped alot :) – Bassel Alkhateeb Jun 18 '11 at 18:56
I did all that, and when I try to control my simulator's accelerometer with SensorSimulator, nothing happens. – Igor Ganapolsky Jan 11 '12 at 18:11

Afaik the simulator doesn't support that.

share|improve this answer
But when i searched,i saw something like OpenIntents Sensor simulator..Will it work? – sruthi Oct 13 '10 at 9:44

I experienced that emulator for target 10 doesn't support accelerometer but for target 15 it does. I dont know if there is a way to do it for target 10. So for testing your application, Create your project and AVD for target 15.

share|improve this answer

I also was trying to get the SensorSimulator working and I think I finally got it working.

The above steps: "...java -jar bin/sensorsimulator.jar

Next, install SensorSimulatorSettings on the emulator using the adb tool which comes with the SDK: $ adb -s install bin/SensorSimulatorSettings.apk

...Finally, run the installed SensorSimulatorSettings app in the emulator and enter the IP address 10.0.2.2..."

are a good start, but I needed to do more.

You apparently need to then modify your application to use the SensorSimulator. You can go to http://code.google.com/p/openintents/wiki/SensorSimulator and scroll down to the "How to use the SensorSimulator in your application" section.

Even then I got some errors in compiling, so you might want to see this page: Vintage Thermometer custom UI component + SensorSimulator (steps to test the component on the emulator) - I had to remove the references to android.hardware.Sensor, SensorEvent, and SensorEventListener.

And then it was failing at the call to connectSimulator. Apparently, I needed to give my application permission to use the Internet in the manifest file.

After all that, I am able to use the SensorSimulator to virtually rotate my phone and I do get the corresponding sensor readings in my application.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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