Android - Copy image to clipboard, anyone got this working?
问题 I am trying to copy a image file from my apk to the clipboard. Here is how I am approaching it (roughly, i'm using a content provider locally which is out of the scope of the question. ClipboardManager mClipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); ContentValues values = new ContentValues(2); values.put(MediaStore.Images.Media.MIME_TYPE, "Image/jpg"); values.put(MediaStore.Images.Media.DATA, filename.getAbsolutePath()); ContentResolver theContent =