这是我在MainActivity
课程中的分享意图。我在Uri.parse
行收到错误。
viewHolder.mShareButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_TEXT, "Shared via Entrepreneur Quotebook");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(getImageUri(Context ctx,)));
shareIntent.setType("image/*");
startActivity(Intent.createChooser(shareIntent, "Share image via:"));
此方法用于解析Uri。我不确定这个方法是否正确,因为我从某个地方复制了这个。
public Uri getImageUri(Context ctx, Bitmap post_image) {
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
post_image.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
String path = MediaStore.Images.Media.insertImage(ctx.getContentResolver(), post_image, "Title", null);
return Uri.parse(path);
答案 0 :(得分:1)
好的,试试这个: -
public class RecycleClass extends RecyclerView.Adapter<RecycleClass.ViewHolder> {
Context c;
ArrayList<String> yourData = new ArrayList<>();//additional parameters
RecycleClass(Context c,ArrayList<String> yourData){
this.c = c; //this is important
this.yourData = yourData;
}
/*
Rest of your code...
*/
}
从您的主要活动(或您正在设置此回收者视图的活动)
//this will setup your context
adapter = new RecycleClass(MainActivity.this,yourData);
并替换此
startActivity(Intent.createChooser(shareIntent, "Share image via:"));
与
c.startActivity(Intent.createChooser(shareIntent, "Share image via:"));
最后
public Uri getImageUri(Bitmap post_image) {
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
post_image.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
String path = MediaStore.Images.Media.insertImage(c.getContentResolver(), post_image, "Title", null);
return Uri.parse(path);
}
现在,无论你在哪里调用getImageUri()方法,只需传递Bitmap而不是上下文。
试试这个,让我知道它是否正常工作。