How could I copy text to clipboard with PhoneGap? I found this plugin, but it seems to be outdated.
I tried to create my own plugin, but I get this error:
Can't create handler inside thread that has not called Looper.prepare()
I found some answers fixing that error, but I’m not too experienced with Java, and I couldn’t fix the code by myself. You can view my code from here, it is just modified version of the ClipboardManager plugin.
I’m using Cordova (PhoneGap) version 1.9.0, and I’m also using jQuery Mobile.
You are trying to run UI code in a thread different than the UI thread. You’ll need to wrap your clip board code in a runable like this: