ClipboardManager is an Android service that is responsible for system-wide clipboard management.
Questions tagged [clipboardmanager]
126 questions
0
votes
1 answer
Python clipboard manager?
Where would be a good place start learning to program a clipboard manager in python. i want to be able to copy selected text with a keyboard macro and set it to a slot identified ny the key combo "ctrl+alt+c+1", "ctrl+alt+c+2" storing more than one…

John
- 497
- 2
- 6
- 20
0
votes
1 answer
Understanding Copy/Paste Android
I'm following the guide for Copy and Paste on the Android Developer's page. However, there's a section I don't quite get, which is the section on pasting with the plain text:
// Gets the ID of the "paste" menu item
MenuItem mPasteItem =…

NioShobu
- 775
- 2
- 10
- 21
-1
votes
1 answer
Copy and Paste the text (Android App)
I am building ClipboardManager app which is used for copying the text and pasting to the app. I used OnPrimaryClipChangedListener to listen the text that is copied to clipboard and I run OnPrimaryClipChangedListener on app service and that will…

Rabindra Acharya
- 1,868
- 2
- 18
- 32
-1
votes
1 answer
android:textIsSelectable not working - Gives me error
I am using this android:textIsSelectable and still gets the error: TextView does not support text selection. Action mode cancelled.
Can any one please tell me what I might be doing wrong?

defiant
- 3,161
- 11
- 41
- 65
-2
votes
1 answer
How to Save text in TextViewEx to clipboard
This my code and some error when i want get text in recyclerview and save in clipboard.
my error with :
holder.btnCopy.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
…

sam
- 1
- 2
-3
votes
2 answers
How to add copy to clipboard button in android?
I want to add a button that will copy the text from non-editable textview inside a cardview. Can I use clipboard manager for this?

Dinesh Neupane
- 382
- 10
- 19