android-emulator

android emulator not playing any sound at all (including the built in Text-To-Speech engine sample) [closed]

允我心安 提交于 2019-12-04 03:28:39
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I have been trying to get the emulator to play sounds since the last few days but nothing is working Please see my other questions HERE and HERE Worst of all is I cannot even make sure whether using the emulator for any job related to sound (recording or playback) is even possible or not. Some forums hint that

Android Emulator: missing right panel

天涯浪子 提交于 2019-12-04 03:26:16
问题 It seems to be that in the latest version of Android studio, Google includes a new skin for the emulator. I noticed that their is a side panel at the right of the emulator. In my case, this panel is missing. I've searched for hours but with no result. Could anyone show me how to enable this panel in the emulator PS: I'm using Ubuntu 14.04 回答1: Put mouse at top right conner(Cursor change to double head arrow) left click mouse and drag out to right. The panel will display again. 回答2: Minimise

Could not run Android emulator as could not initialize emulated framebufferHAX in Windows 7

人盡茶涼 提交于 2019-12-04 03:17:35
问题 I am using Google map activity and added some dependencies to display the map on an emulator. I'm getting the following error: C:\Users\root\AppData\Local\Android\sdk\tools\emulator.exe -netdelay none -netspeed full -avd Nexus_One_API_21 Failed to create Context 0x3005 could not get wglGetExtensionsStringARB could not get wglGetExtensionsStringARB emulator: WARNING: Could not initialize OpenglES emulation, using software renderer. could not get wglGetExtensionsStringARB emulator: device fd

Emulator not starting after updating to Android Studio

社会主义新天地 提交于 2019-12-04 03:06:19
I have updated android studio to 3.0 through standard update channel. After update am not able to start the emulator. I have tried the following. But nothing worked. Restart and reinstall HAXM installer. Restart and reinstall AVD manager. Start emulator from terminal. Change the size of RAM to 2GB. Graphics to Software GLES 2.0 PFB the logs. At 4:Run Error while waiting for device: The emulator process for AVD Nexus_5X_API_25 was killed. AT Gradle Console: 27/10/17 8:42 PM Gradle sync started 8:42 PM Project setup started 8:42 PM Gradle sync finished in 3s 25ms (from cached state) 8:42 PM adb

Changing Locale in Android Emulator [duplicate]

南楼画角 提交于 2019-12-04 02:56:48
This question already has an answer here: How to change the default language of Android Emulator? 5 answers I'm just starting to learn Android development. I have included a EditText component in my view and started the emulator in Eclipse. When I type in the Textbox, the auto suggestions are coming up in Chinese language but I want to change this to English. How do I change this Locale and Android Emulator? I'm using the Android 2.1 for development. No Need to change local, just long press on the EditText widget, on the popup menu select input method, and change to the android keyboard. I am

Android emulator hanging on startup?

给你一囗甜甜゛ 提交于 2019-12-04 02:55:15
I've been modifying/editing parts of the Android platform, but have run into a problem when trying to test my edits. After making my changes to the platform source, I was able to successfully compile the source - thus creating system.img, ramdisk.img, and userdata.img. When I go to test this in the emulator, the emulator just hangs on the "ANDROID_" screen, with the underscore blinking, but never seems to load. Any suggestions? The command I used to run the emulator is as follows: ./emulator -system $HOME/android/platform/out/target/product/generic/system.img -ramdisk $HOME/android/platform

How to make Android app update in execution time

假如想象 提交于 2019-12-04 02:33:18
问题 Hey, Im trying something in android, that has to get the words sent in sms and print on the emulator screen. But the app doesnt update in time. I send a message. Ok. But when I open the app it doesnt print the words that I've sent. So i have to close the emulator and then open it again, and run the app, and the word is there. Id like that when I sent the message and then I access the app, the word is printed without I have to close the emulator. How do I do this? So here is my code. Remember

How to register this tablet to Ubuntu udev list?

随声附和 提交于 2019-12-04 02:11:49
I've got a cheap android tablet and I need to use it to test apps on it. I am using Ubuntu so I first have to add the device to udev list. I connected the tablet, but adb does not see it $ adb devices List of devices attached $ The I tried using lsusb , but the device is not identified to the Ubuntu (USB debugging is checked! in tablet's properties) $ lsusb Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1

Do x86 Android AVD's work on Linux on AMD?

杀马特。学长 韩版系。学妹 提交于 2019-12-04 01:58:11
问题 I know that you cannot run the x86 images on Windows on AMD. I am trying to see if I can run them on Linux though as the documentation implies. I installed Ubuntu 1704. I installed the latest Android Studio 2.3.3. I created a default AVD for API 25 on x86. I have also installed the following packages: cpu-checker lib32ncurses5 lib32z1 gcc-multilib nvidia-current I have an AMD Phenom II 1045T: vendor_id : AuthenticAMD cpu family : 16 model : 10 model name : AMD Phenom(tm) II X6 1045T Processor

how to get ip address of pc in android emulator through code

江枫思渺然 提交于 2019-12-04 01:32:56
问题 i am using the code of this link How to get IP address of the device from code? but getting ip address different than from my machine....how can i get the ip address of my machine on android emulator.. thanks in advance 回答1: Check this out if you want to access host machine. Another solution is to run this on shell $ adb shell am start -a android.intent.action.WEB_SEARCH -e query "what is my ip" it will display your system IP 回答2: import the package java.net; and write the code, try {