我正在尝试从我应用的当前视图生成打印屏幕并通过Instagram分享其图像,但我收到以下错误...
W / Bundle:关键android.intent.extra.STREAM预期Parcelable但值>是[B.返回了默认值。 尝试转换生成的内部异常: java.lang.ClassCastException:byte []无法强制转换为 android.os.Parcelable 在android.os.Bundle.getParcelable(Bundle.java:894) 在android.content.Intent.getParcelableExtra(Intent.java:7075) 在 android.content.Intent.migrateExtraStreamToClipData(Intent.java:9887)
我使用以下功能分享图片:
public static Bitmap scaleDownBitmap(Bitmap photo, int newHeight, Context context) {
final float densityMultiplier = context.getResources().getDisplayMetrics().density;
int h= (int) (newHeight*densityMultiplier);
int w= (int) (h * photo.getWidth()/((double) photo.getHeight()));
photo=Bitmap.createScaledBitmap(photo, w, h, true);
return photo;
}
private static byte[] getScreenShotByteArray(View view){
View screenView = view.getRootView();
screenView.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(screenView.getDrawingCache());
Bitmap scaledDownBitmap = scaleDownBitmap(bitmap,20,MyApplication.getAppContext());
screenView.setDrawingCacheEnabled(false);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
scaledDownBitmap.compress(Bitmap.CompressFormat.PNG, 80, stream);
byte[] byteArray = stream.toByteArray();
return byteArray;
}
当用户按下 insta按钮:
时,会触发上述功能insta.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent share = new Intent(Intent.ACTION_SEND);
// Set the MIME type
share.setType("image/*");
//Get view
View rootView = getWindow().getDecorView().findViewById(android.R.id.content);
// Add the URI to the Intent.
share.putExtra(Intent.EXTRA_STREAM, getScreenShotByteArray(rootView));
share.setPackage("com.instagram.android");
// Broadcast the Intent.
startActivity(share);
}
});
我怎样才能做到对不对?
答案 0 :(得分:0)
引用the documentation for EXTRA_STREAM
,其值应为:
内容:包含与Intent关联的数据流的URI,与ACTION_SEND一起使用以提供正在发送的数据。
将图像保存到文件中,而不是byte[]
。然后,配置FileProvider
以提供该文件,并使用FileProvider.getUriForFile()
将Uri
放入Intent
。在使用addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
之前,请务必在Intent
上致电startActivity()
。
此外:
使用具体的MIME类型,而不是通配符。 作业是告诉其他应用,其MIME类型属于此内容,因为你是选择该类型的应用。
请注意,只有一小部分Android用户是Instagram用户,因此如果您执行此代码,您的应用会在大多数设备上崩溃,因为这些用户不会安装Instagram。
< / LI>