文本
new ShareAction(ShareActivity.this).withText("hello").withMedia(image).share();
链接:
UMWeb web = new UMWeb(“网址”);//开头必须是http打头
web.setTitle("来自分享面板标题");
web.setDescription("来自分享面板内容");
web.setThumb(new UMImage(ShareMenuActivity.this, R.drawable.logo));
new ShareAction(ShareMenuActivity.this).withMedia(web)
.setPlatform(share_media)
.setCallback(mShareListener)
.share();
网友评论