Keyboard for Android emulator?

I just do this in an Android emulator to copy and paste data into edittext.

  • Ctrl + C = Copy
  • Ctrl + V = Paste

But that did not work. So, I need to know if these shortcuts work or not in the emulator. Or any other special shortcuts available for the Android emulator. Does anyone know this, help me deal with the problem? Hope this will be very helpful for me. I am working on Windows 7 Professional.

+7
source share
6 answers

enter image description here

For more information: Android emulator .

+7
source

You can see the shortcuts by clicking the "more" button:

emulator window

And go to the Help tab:

advanced controls window

+9
source

You can check the current configuration from the console.

emulator -help-keys When running the emulator, use the following keypresses: Ctrl-H Home button Ctrl-M Menu (Soft-Left) button Ctrl-Backspace Back button Ctrl-Escape Power button Ctrl-Equal Volume up button Ctrl-Minus Volume down button note that NumLock must be deactivated for keypad keys to work 
+7
source

Copy the text you want:

Ctrl + C = Copy

Then, when the emulator is in focus, paste using:

Ctrl + V = Paste

Then, in the text editor that you want, long press on the field until you see that the emulator insert button appears above the cursor. Click and it should work.

+1
source

In Android Studio emulator ctrl + v does not work, just hold the left mouse button for a second and the insert menu will appear (in a text box, etc.).

0
source

For Mac OS, the most important shortcuts are:

Cmd + Backspace : Back Button

Cmd + O : overview (square button)

Cmd + Shift + H : Home (center button)

You can see the rest in the Triple Dot menu, go to the help section.

0
source

Source: https://habr.com/ru/post/899046/


All Articles