我正在尝试通过 facebook 分享包含链接的文本。我的代码与 facebook messenger 应用程序完美配合。但不是通过 Facebook 应用程序。在 Facebook 应用程序中,我得到一个带有空编辑文本的共享视图。我不想整合 facebook api 并给予分享授权。我不想那样做。我认为它只能通过额外和意图来完成。
我的分享代码:
private void ShareWebView(){
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, mTitle);
startActivity(Intent.createChooser(intent, "Share with"));
}