android-emulator

ajax navigation error when using phonegap and ran locally

时光总嘲笑我的痴心妄想 提交于 2019-12-11 05:59:52
问题 Sorry for the complete newbie question but i'm not having much luck. I've created a project through eclipse with the phonegap plugin and deployed it as an android app onto a tablet to run locally - but I'm getting the 'Note: Navigation may not work if viewed locally' bar being added on the bottom of the pages. How do I get round this? I thought if it was packaged up in this format I wouldn't have to install an android webserver onto the tablet and run it through the browser? All guidance is

Android emulator: changing soft keyboard language

流过昼夜 提交于 2019-12-11 05:55:06
问题 I want to change my Android emulator soft keyboard language. So far, I have a Japanese layout and I tried a lot of things unsuccessfully. I want to have an English (or whatsoever western Latin) layout. Can someone help me? 回答1: Long Press on the key shown below It will show the following menu select the appropriate keyboard type and language it will show that keyboard 来源: https://stackoverflow.com/questions/14928108/android-emulator-changing-soft-keyboard-language

Google Map not showing in android Emulator

邮差的信 提交于 2019-12-11 05:37:45
问题 I am trying to show Google map in android emulator but there's only gray grids. Following are my manifest, XML and activity code. Also I am getting error that Couldn't get connection factory client . Here is my Manifest I have included internet permission: ?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.maptry" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="10" /> <uses

How to figure out the IP address of AndroVM 4.1.1_r6.1-20130222 emulator?

我的梦境 提交于 2019-12-11 05:30:08
问题 I've installed AndroVM emulator and now want to connect it to adb in order to be able to deploy my applications there. I've read that in order to do so, it is necessary to press Alt-F1 on the keyboard and then enter the netcfg command. But when I press Alt-F1 I see a screen like shown below (no command line). AndroVM configuration app looks like this: How can I find out the IP address of the emulator? Update 1 (01.05.2013 20:18 MSK): I stopped the VM and tried to configure the network as

Ambitious attempt at running android app on multiple emulators - can't stop emulators

不打扰是莪最后的温柔 提交于 2019-12-11 05:24:20
问题 So I have an idea of testing my android app on my laptop using one avd but with multiple config.ini files to change the makeup of the avd itself. I have created multiple avds, and copied the config.ini files into a separate folder. I have also written a bash script to loop through my config.ini files copy them one at a time to the avd folder (overwriting the last one) attempt to stop any current running emulator (this is my big problem) start the emulator run my tests on it (which take

emulator-headless with vnc server

元气小坏坏 提交于 2019-12-11 05:22:17
问题 I am trying to figure out how to use android emulator via vnc on a remote server. I installed tightvnc server on ubuntu, graphic environment and started it: apt install tightvnc apt install xfonts-base sudo apt-get install gnome-core xfce4 firefox nano -y --force-yes vncpasswd vncserver :2 -geometry 1080x1920 -depth 24 Now I can successfully connect to my server on 5902 port and see the gui. Now I am trying to start the emulator with Android Pie: echo 'no' | avdmanager create avd --force -

How to Connect Rad Studio 10 Seattle with Nox App Player

ぃ、小莉子 提交于 2019-12-11 05:13:51
问题 According to this official blog post (How to connect Android Studio with Nox App Player for Android development and debug) it is possible to connect Android Studio with Nox App Player . Now I can connect Android Studio with Nox App Player but this method does not work for Rad Studio . I contact Nox support team and ask them for a solution, they told me: You can connect to Rad Studio by integrating Android development plug-in. Then forward through the command port (nox_adb.exe connect 127.0.0

Open NFC Simulator hangs when pulling NFC Device #2

房东的猫 提交于 2019-12-11 05:00:05
问题 I'm currently experimenting NFC with android emulator and Open NFC. I have setup OpenNFC as described here P2P in Android using Open NFC virtual device, running 2 emulator instances then clicking "NFC Device #2" to simulate device touching. It works as expected, the tag is sent to the other device. The problem is when I double click "NFC Device #2" to simulate pulling, the NFC simulator always hangs. Anyone else having this problem? 来源: https://stackoverflow.com/questions/10290889/open-nfc

Any way to get the sender phone number from a received sms on android?

拟墨画扇 提交于 2019-12-11 04:59:22
问题 I wrote send and receive sms program sucsessfully but I want to that checked receiver phone number in onReceive method. how can i get the sender phone number from a received sms in android? I wrote this code but it dosent worked!!! please check it and help me. public class SmsReceiver extends BroadcastReceiver { public String str = ""; @Override public void onReceive(Context context, Intent intent) { // ---get the SMS message passed in--- Bundle bundle = intent.getExtras(); SmsMessage[] msgs

Appium-Activity used to start app doesn't exist or cannot be launched! Make sure it exists and is a launchable activity

感情迁移 提交于 2019-12-11 04:56:47
问题 I am trying to run a test file created on eclipse using appium. When I execute the test on a real android device connected to the system, I get the following error: Encountered internal error running the command: Error: Error occurred while starting App. Original error: Activity used to start app doesn't exist or cannot be launched! Make sure it exists and is a launchable activity. The app opens fine manually and on the emulator so I'm not sure what's the issue with real devices. 回答1: The