127 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
2
answers
1k
views
How to resolve deprecated ClipboardManager in Jetpack Compose?
The ClipboardManager interface was deprecated. What should I change?
0
votes
0
answers
2k
views
Unable to Set Emoji Art to Clipboard Properly
I have made an app on ASCII Art. Now, I am in the process of incorporating Emoji Art into the app.
While the functionality for setting ASCII text in the clipboard works seamlessly, I have encountered ...
0
votes
0
answers
235
views
How to custom the default notification of clipboard manager in Android 13 and higher?
This is my code block to fix
private inner class ViewEmojiHolder(itemView: View) : RecyclerView.ViewHolder(itemView){
var emoji: TextView = itemView.findViewById(R.id.textView_emoji)
...
1
vote
1
answer
900
views
How to clear clipboard entries in Flutter or in Android Kotlin?
In my Flutter app (for Android an iOS), I want to clear either all the clipboard entries or at least the last text I copied to the clipboard (so the last entry). For the moment, I'm only focusing on ...
0
votes
1
answer
161
views
Save webview text to clipboard
I have created a WebView, I want to be able to copy the content of the webview with formating to the clipboard.
recipeDescription.getText().toString Didn't work because the recipeDescription is a ...
1
vote
1
answer
407
views
clipboard manager extension for writer
I am trying to build a clipboard manager extension for Libre office. When-ever I cut (or copy) text from a document, it should be appended to another file so that I will never loose my work even if I ...
1
vote
0
answers
267
views
Is it possible to automatically copy every item that enters clipboard in React Native (a ios/andriod Clipboard Manager app idea)?
I am looking to make a clipboard manager within React Native. The concept is that everything you copy into the clipboard will be saved into the clipboard manager so that you can access items you ...
7
votes
4
answers
5k
views
How to disable Clipboard editor overlay Android Emulator API 33?
How can i disable Clipboard editor overlay, that is enabled by default in Android Emulator API 33?.
It is very annoying while debugging apps.It always popup over my debugging apps, and i have to close ...
1
vote
0
answers
401
views
Is there any way to paste image file ( Uri form ) from clipboard to notepad app in android
Is there any way to paste image file from clipboard to notepad app in android. Notepad allow only text to paste from clipboard, but I have image file (Uri Format) in clipboard to paste in notepad app.
...
1
vote
2
answers
2k
views
Unable to get the clipboard data in java android
I am working on a android project in java where i need to copy paste some data in an activity, but the problem here is i am able to set the primary clip but when i try to access the primaryClip it ...
2
votes
0
answers
188
views
Android 12, ClipboardManager.getClassificationStatus always return CLASSIFICATION_NOT_COMPLETE [1]
I use
ClipboardManager.primaryClipDescription.getConfidenceScore(TextClassifier.TYPE_URL)
every call returns java.lang.IllegalStateException: Classification not complete.
How to get the probability ...
1
vote
1
answer
2k
views
Android development: How to listen to clipboard changes outside of an APP on Android 11?
I have a personal APP primarily developed for Android 9 that listens to clipboard changes and prompt a window on top of wherever I copy a URL. The implementation is as below:
ClipboardManager....
3
votes
0
answers
319
views
Android: Copy multiple text won't show on clipboard to paste
I have the following pieace of code:
ClipboardManager clipboardManager = (ClipboardManager)getContext().getSystemService(Context.CLIPBOARD_SERVICE);
ClipDescription clipDescription = new ...
3
votes
0
answers
661
views
How to give clipboard permission to Android Webivew automatically?
When I load a URL in any browser it asks me for the permission provided in the image.
But when I try to load this URL in Android Webview how can I ask user to provide this permission? OR How can I ...
0
votes
0
answers
157
views
Insert text into clipboard in android using java
I am trying to use the clipboard in android as described here: https://www.tutorialspoint.com/android/android_clipboard.htm
ClipboardManager myClipboard;
myClipboard = (ClipboardManager)...