How to copy Images/files to clipboard in android? Any Alternative methods/steps to get this

前端 未结 3 1197
轻奢々
轻奢々 2020-12-06 12:23

I want to copy images/files to clipboard. I have googled it but i didn\'t find any alternative/suggestion to this. but i have seen some app\'s done in app store. want to kno

3条回答
  •  一向
    一向 (楼主)
    2020-12-06 13:03

    Android ClipData.Item supports only Text & Uri. So you can't acheive copying of image data over clipboard.

    One possible solution can be to save image data in some sort of Storage and copy Content URI of the same. However this will not make life easier for you, as data copied will be available to all editors which can get data from ClipboardManager, They might not know how to handle this type of Data.

    If you want to copy/paste in your apps, then i will suggest you to write your own version of ClipboardManager and do whatever you want :)

提交回复
热议问题