我想將資源文件夾中存儲的圖像複製到剪貼板管理器,以便稍後粘貼到另一個應用程序,如郵件,whatapp或聊天。 我有研究人員幾個鏈接一些提到這可以做一個文件的URI。如何將圖像複製到Android上的剪貼板管理器,例如?
這是我得到的最好的,有人可以指點我一個這樣的工作示例。
File imageFile = new File("file:///android_asset/coco_001.png");
ContentValues values = new ContentValues(2);
values.put(MediaStore.Images.Media.MIME_TYPE, "image/png");
values.put(MediaStore.Images.Media.DATA, imageFile.getAbsolutePath());
ContentResolver theContent = getContentResolver();
Uri imageUri = theContent.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
ClipData theClip = ClipData.newUri(getContentResolver(),"Image", imageUri);
弄來了它的工作 – VickyS