我有以下代码:
File imageFile = new File(f.getAbsolutePath());
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);
android.content.ClipboardManager clipboard = (android.content.ClipboardManager)getSystemService(Context.CLIPBOARD_SERVICE);
clipboard.setPrimaryClip(theClip);
我只看到路径而clipboard
不是路径image
本身,我认为它必须可以看到,image
因为当您截取屏幕截图时,您会在剪贴板中看到图像。如果您知道如何将位图传递到剪贴板,也许只有位图才能告诉您。如果有人可以提出解决方案,我将非常感激。