emulation

Android ICS emulator camera

跟風遠走 提交于 2019-12-05 12:13:44
问题 I am trying to get a look at the Gallery application in ICS, using the emulator. So, I launch an AVD and snap a couple of pictures with the Camera then launch the Gallery. When I click any collection in the Gallery, I get an error, "Unfortunately, the camera has stopped". The Gallery application quits. I've tried this on Mac and Windows. Same thing. Anyone know how to make this work? 回答1: You need to make sure that your AVD has the camera enabled prior to starting the application. In Eclipse

Unable to execute initial Android Wear Hello World App in eclipse

做~自己de王妃 提交于 2019-12-05 10:50:52
After intial Eclipse Luna setup when I try to run the intial Hello World app in the Android Wear emulator, its getting stopped showing "You cannot combine swipe dismissal and the action bar" error in logcat.Please help me to solve this issue. I had the same problem yesterday. I solved it by running the application in full screen mode, I do not think this is the best solution, but it worked, although this does not have the action bar. In you onCreate method add this before the setContentView. requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG

DDMS showing empty file explorer for online emulator

人盡茶涼 提交于 2019-12-05 10:19:32
问题 I am facing this problem from many day,i searched a lot but not found any convenient answer. Whenever I start a emulator ,after some time when I see DDMS its show the emulator online but its File Explorer is show nothing . Its visible again when I restart my emulator again or restart Eclipse .but I dont want this ,I want a quick solution. One more thing I have already set the device timeout to a higher value but its also not working. Here is Screen Shot of my DDMS .Can anyone have a Quick

Simulate pinch gesture in Windows Phone 8 emulator [duplicate]

被刻印的时光 ゝ 提交于 2019-12-05 08:15:44
Possible Duplicate: How can I simulate multi-touch in the Windows Phone 7 emulator? I'm trying to simulate a pinch gesture so I can zoom out in a map, but I can't seem to figure out how?! Seems to me like a rookie problem, but everywhere I've checked they tell me there's supposed to be a pinch button in the toolbar on the right in the emulator. Any ideas? user1836122 The Windows Phone emulator only supports multitouch gestures with a multitouch device. You would have to have a screen, or touchpad to work with it. Also, there has been comments about using two mice and there is a project on

Android AVD Emulator Dev Tools for Mobile Browser?

北慕城南 提交于 2019-12-05 08:04:52
I'm working on a mobile web app. I have a variety of devices I'm testing with but one device I do not have is an Android device running Android 2.3.x. I've resorted to using Android AVD emulators via Eclipse. It's good using the emulator for testing, however a few CSS styles of my web app render strangely in the Android 2.3.x Web Browser. Is there any way to debug or experiment with the CSS using the default Android browser in an AVD emulator? I'm not sure if it's possible to somehow examine and alter the CSS in the browser so that I can figure out what the problem is (similar to what you do

Windows PC as a USB slave to emulate a thumbdrive

霸气de小男生 提交于 2019-12-05 07:55:41
I need to create a application that will allow a Windows PC (XP/Vista) to emulate a thumbdrive. That is, when the PC is plugged into either another Windows system, or in this case, a piece of hardware that allows for USB thumbdrives to be plugged in, a folder on the computer looks like a giant thumbdrive. Any thoughts on where a guy would start to investigate this? Update (more specific description): I need to connect my PC to one of the newer multifuction devices that support scanning to a USB thumbdrive that is inserted into the front of the device. These units do not support WIA or TWAIN

Android Studio emulator is not working

≡放荡痞女 提交于 2019-12-05 06:23:12
i´ve searched about an awnser for this problem, tried many things, but still it doesn't Work. I'm using a win7 64-bit version. I've set the ANDROID_SDK_HOME variable and... nothing. With the path: C:\Users\Nuno\Favorites\.android\avd The error is this: Cannot launch AVD in emulator. Output: PANIC: HOME is defined but could not find PhoneTest.ini file in $HOME\.android\avd (Note: avd is searched in the order of $ANDROID_AVD_HOME,$ANDROID_SDK_HOME\.android\avd and $HOME\.android\avd) Can someone help me? It's working now! How did i solved? I copied the AVM's i created from c:\user\favorites

Kinect emulation w/o actual device plugged

耗尽温柔 提交于 2019-12-05 06:03:00
Is it possible to emulate Kinect sensor (for usage with Kinect SDK), when the Kinect itself isn't plugged? First I thought Kinect Studio does exactly what I wanted, but now it seems like Kinect Studio records data streams and can "feed" them to application, but is unable to emulate connection to the sensor. So at the moment I have a couple of .xed files recorded with Kinect Studio and I can't launch any Kinect-enabled apps without getting "Kinect sensor is not plugged in" or whatever message. Is there any way around this? I have access to Kinect, but it's not at the same place I intend to

After I remove the apk, whenever I start Debug it tells me the package is not installed

梦想的初衷 提交于 2019-12-05 04:57:16
I have my Emulator open, and using Command Prompt I remove my application. I didn't closed the Emulator. Then I go to Eclipse and hit Debug, but doesn't deploy the apk to the emulator, just tells me the package not yet registered with the system. New package not yet registered with the system. Waiting 3 seconds before next attempt. Restarting the emulator is not an option, as that takes 10-15 minutes. What I am doing wrong? I have encountered this occasionally. Doing a clean project before rebuilding and redeploying seems to do the trick. This is eclipse (the point is eclipse can not run your

Small RISC emulator

穿精又带淫゛_ 提交于 2019-12-05 04:47:17
问题 I'm looking to build a VM into a game and was wondering if anyone knew of any really simple VM's (I was thinking RISC/PIC was close to what I wanted) that are usually used for embedded projects such as controlling robots, motors, sensors, etc. My main concern is having to write a compiler/assembler if I roll my own. I'd be nice to use the tools that are already out there or in its simplest form just a C compiler that can compile for it :-p. I really don't want to re-invent the wheel here but