Clipboard Manager
Posted: December 29th, 2019, 10:33 am
Dear All,
Is there any way to paste on to text field with out pressing <CTRL> + āVā on windows and long press and select PASTE on Android, my intention is to paste clipboard string though logic to a text filed in android device which is copied to clipboard by another android application using following statements.
Disala
Is there any way to paste on to text field with out pressing <CTRL> + āVā on windows and long press and select PASTE on Android, my intention is to paste clipboard string though logic to a text filed in android device which is copied to clipboard by another android application using following statements.
appreciate your guidanceAndroid
clipboardManager=(ClipboardManager)getSystemService(CLIPBOARD_SERVICE);
ā¦
clipboardManager.setPrimaryClip(clipData);
Disala