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 know how can we achieve this.
Any one please help me OR give me some suggestions?
i found this link but now clue how to achieve this functionality.
I don't think you can copy files/image in clipboard. You can do something like this:
Create a File Browser App something like (ES Explorer). You can make File Browser app using Content Providers(Not Sure) and showing the Folders/Files in List View.
Lets suppose in the app an item in ListView indicates a File/Image. On Long pressing it open a popup. with some options like Cut/Copy/Move/Delete. As you have the Absolute Path of Each file/image. You can use JAVA File Handling to:
a) Delete a File.
b) Move it from one location to another
c) Creating a Copy of File
etc..