参考文章:https://www.jianshu.com/p/25c84ed9046d
Bitmap bgimg0 = loadBitmapFromView(imgText);
Intent share_intent = new Intent();
share_intent.setAction(Intent.ACTION_SEND);
share_intent.setType("image/*");
SimpleDateFormat formatter = new SimpleDateFormat ("HH-mm-ss");
Date curDate = new Date(System.currentTimeMillis());
share_intent.putExtra(Intent.EXTRA_STREAM, saveBitmap(bgimg0,formatter.format(curDate)));
//创建分享的Dialog
share_intent = Intent.createChooser(share_intent,"分享");
startActivity(share_intent);
分享是可以,但是效果非常不好,有黑边。
后面我参考了下面这个文章
https://juejin.im/post/5a3130b6f265da4304069e8d
最后没办法,只能到微信上去实现这个效果了。。。
具体参考这个。。https://www.jianshu.com/p/3fc2a2bc3bde
因为要注册微信应用,所以我就放弃了。。。
太难了。。。