ankitjaininfo
ankitjaininfo

Reputation: 12372

Paste text on Android Emulator

Is there an easy way to copy/paste (desktop's) clipboard content to EditView on Android Emulator?

(just for the sake to ease development/test)

Upvotes: 511

Views: 247620

Answers (26)

Alex from Jitbit
Alex from Jitbit

Reputation: 60882

Adding another answer, since this is the only (weird) way I was able to fix this.

There's a (non-working) setting called "Enable clipboard sharing". It does not work at first:

enter image description here

However, once you enabled that setting you have to use built-in copy-paste at least once on the device, only THEN it starts working (and by "working" I mean: when the Android keyboard is open, as soon as you copy something on Windows/Mac, the value becomes available on the Android keyboard for a little while).

Also keep in mind that the emulator watches the host-operating system's "copy" event and only offers the text after that.

I.e. if you've already had something in the clipboard before opening the emulator, it won't be available, since there was no event to catch.

Upvotes: 12

Toufic
Toufic

Reputation: 382

Just click the left mouse button and keep it down for 1 full second, then release it.
A paste button will appear. Click the paste button and the text will be copied.

Upvotes: 14

Gimnath
Gimnath

Reputation: 1078

To my understanding, It's totally depends on the Emulator that you use

Upvotes: 0

Denis Arkharov
Denis Arkharov

Reputation: 89

Sometimes the clipboard of the emulator is not synched with the system clipboard. It is a bug.

But you can consider the ability to change the value of a variable in debug mode: https://www.jetbrains.com/help/idea/tutorial-set-value.html#solution (Android Studio based on IntelliJ IDEA, so I hope that this link will be helpful)

If your app reads the text from clipboard, you can change the value of the variable for this text and past your text there

Upvotes: 0

Mohamed Medhat
Mohamed Medhat

Reputation: 1091

My case was that my emulator pasted something that I copied few days earlier and never pasted the last thing in my current clipboard of my laptop.

To solve that I made my emulator starts from cold boot rather than quick boot.

Upvotes: 10

Ahmad Khani
Ahmad Khani

Reputation: 978

Actually, in my case restarting the MacBook and running the emulator with this command fixed the issue:

 emulator -avd Pixel_5_API_31  -wipe-data

remember that you should use your emulator device, to see the emulator list use this command:

emulator -list-avds 

Upvotes: 0

LMG
LMG

Reputation: 1370

For Mac users, a MUCH easier way is to do this right in the android emulator:

  • click and hold for a second or two
  • release click
  • the option 'paste' will appear as follow

enter image description here

Upvotes: 44

nirojan
nirojan

Reputation: 169

An easy way is there

  1. Activate keyboard in emulator.
  2. Click on the place you want to paste and long press (press until you see the word PASTE)
  3. Done.

See original answer: https://www.quora.com/How-do-I-paste-text-from-my-computer-to-Android-emulator

Upvotes: 7

Rishabh Arya
Rishabh Arya

Reputation: 272

Only For API level >= 24

Copy any text from your local machine and then simply run this command

adb shell input keyevent 279

Make sure In Android Emulator Settings the Enable Clipboard Sharing options is enabled

Upvotes: 11

nana janashia
nana janashia

Reputation: 139

You can do this without workarounds too. Just click and hold for a bit in the input field till the paste notification appears and then click on paste. That's it!

Upvotes: 8

Wachaga Mwaura
Wachaga Mwaura

Reputation: 3610

Just copy from wherever, click and hold on the emulator phone's edit text where you want the text to go (kind of like you would press and hold to paste on an actual phone), the PASTE option will appear, then PASTE.

Upvotes: 116

Andrey Izman
Andrey Izman

Reputation: 1914

On Linux this will paste text directly from the clipboard

adb shell input text "'$(xclip -selection c -o)'"

Also it very useful to create global keyboard shortkey with this command for example Ctrl+Shift+Super+V

Upvotes: 18

Florin Birgu
Florin Birgu

Reputation: 505

Made this Windows application that allows users to copy paste to Android emulators or connected devices from a visual interface. https://github.com/Florin-Birgu/Android-Copy-Paste

enter image description here

Upvotes: 7

TEH EMPRAH
TEH EMPRAH

Reputation: 2058

Not sure if that's useful, but, if you need a long URL from desktop browser to be opened in mobile browser, you can send SMS with that URL and open directly from message app.

enter image description here

Upvotes: 65

Jamal Eason
Jamal Eason

Reputation: 6598

With v25.3.x of the Android Emulator & x86 Google API Emulator system images API Level 19 (Android 4.4 - Kitkat) and higher, you can simply copy and paste from your desktop with your mouse or keyboard.

This feature was announced with Android Studio 2.3

Copy and Paste with the Android Emulator

Upvotes: 235

Arpan24x7
Arpan24x7

Reputation: 668

Write command: adb devices (it will list the device currently connected) Select Textbox where you want to write text. Write command: adb shell input text "Yourtext" (make sure only one device is connected to run this command) Done!

Upvotes: 1

gMale
gMale

Reputation: 17895

I got tired of this problem so I just made this alias to handle it:

alias ap="pbpaste | xargs adb shell input text"

Then when you open a new terminal window, typing "ap" will paste whatever is on your clipboard into the emulator's actively selected text field.

Setup

Simply add this to your profile (for most users that's ~/.bash_profile for zsh users that's ~/.zshrc) to make the alias available everywhere. Alternatively, if you're a bash user (the default for MacOS), then you can run the following command in the terminal to set it up for you:

echo "alias ap='pbpaste | xargs adb shell input text'" >> ~/.bash_profile && source ~/.bash_profile

Upvotes: 10

Baker
Baker

Reputation: 28080

For Mac and Linux try this function in your aliases_bash file (located in /etc/aliases_bash for Mac folks, be sure to use sudo vim /etc/aliases_bash)

function adbtx {
  userinput="$(sed 's/ /%s/g' <<< $1)"
  adb shell input text "${userinput}";
}
export -f adbtx

Then in the command line enter:

adbtx 'Your text to emulator input'

'Your text to emulator input' will be input on the emulator text field.

Kudos to Eliot for his substitution string for sed.

Upvotes: 1

Andrew
Andrew

Reputation: 239087

If you are using Android Studio on a Mac, you may need to provide the full path to the adb executable. To find this path, open:

Android Studio > Tools > Android > SDK Manager

Copy the path to the SDK location. The adb executable will be within a platform-tools directory. For me, this was the path:

~/Library/Android/sdk/platform-tools/adb

Now you can run this command:

~/Library/Android/sdk/platform-tools/adb shell input text 'thetextyouwanttopaste'

Upvotes: 18

gcb
gcb

Reputation: 14556

(converting comment discussion to answer)

only solution on windows: https://github.com/gcb/AdbPaste

wrote it in a couple hours to work around this problem. I am now back on 100% linux, so feel free to join it as a contributor or maintainer!

Upvotes: 1

Alexander Higgins
Alexander Higgins

Reputation: 6905

Using Visual Studio Emulator, Here's my method.

First Mound a virtual sd card:

  1. Use the Additional Tools (small >> icon) for the emulator and go to the SD Card tab.
  2. Select a folder on your computer to sync with the virtual SD card.
  3. Pull from SD card, which will create a folder structure on the selected folder.

Set up a text file to transfer text:

  1. Use Google Play Store to install a text editor of your choice
  2. Create a text file containing your text on you computer in the download directory of the virtual sd card directory you created before.

Whenever I need to send text to the clip board.

  1. Edit the text file created above.
  2. Go to Additional Tools (small >> icon) and chose Push To SD Card.
  3. Open the text file in the text editor I installed and copy the text to the clip board. (Hold down the mouse when the dialog opens, choose select all and then click the copy icon)

Once set up it pretty easy to repeat. The same method would be applicable to other emulators by you may need to use a different method to push your text file to emulator.

Upvotes: 1

Rose Perrone
Rose Perrone

Reputation: 63616

In a terminal, type adb shell input text 'my string here. With some characters escaped like \$ that'

Note that an alternative method for including spaces in the text is to substitute %s for each space character.

Upvotes: 417

Joel Beckham
Joel Beckham

Reputation: 18664

I usually send the text I want to copy as an sms message through telnet and then copy the text from the sms message. Here's how:

Connect through telnet:

  • Syntax: telnet localhost <port>
  • Example: telnet localhost 5554

(5554 is the default port. The title bar of the emulator shows the port that is being used, so you can see if it's different).

Send message:

  • Syntax: sms send <senders phone number> <message>
  • Example: sms send 1231231234 This is the message you want to send

(You can just make up the senders phone number)

This works really well for links as the message is automatically converted into a hyperlink which you can click without having to copy / paste it into the browser.

Once the emulator receives the message you can copy it and paste it wherever you like.

Upvotes: 88

barryku
barryku

Reputation: 2584

I came here looking for a solution to the same problem, and ended up writing an Android application to solve this problem. You can download it at http://www.box.net/shared/6203bn441bfltkimajmk. Just give a URL via Preferences menu to point to a place where you can change the Web response easily. The first line of the Web response will be copied to your emulator's clipboard for you. More details can be found at http://agilesc.barryku.com/?p=255.

Upvotes: 0

yingted
yingted

Reputation: 10554

Have you looked at C2DM? chrome2phone and fox2phone can send links and clipboard text and automatically copy it on the phone. Also, try using the adb shell. There's a service command (/system/bin/service) which can use services (service call clipboard ...). The transaction codes are 1, 2, and 3, for getClipboardText, setClipboardText, and hasClipboardText respectively.

Upvotes: 2

mad
mad

Reputation: 3513

maybe a little bit tricky, but you could send an sms to the emulator by using the emulator control. then you do not have to retype all the text if it is longer and can copy-paste it in the emulator.

another way: connect to emulator via "telnet localhost PORT" and then use hardware event sending to send a text input event to the emulator (needs to be UTF-8). look at this

Upvotes: 7

Related Questions