我想通过Android上的Intent分享网址:
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setType("text/plain");
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
intent.putExtra(Intent.EXTRA_SUBJECT, getString(R.string.share_subject));
intent.putExtra(Intent.EXTRA_TEXT,
"http://example.com/mypage");
startActivity(Intent.createChooser(intent, "Weiterempfehlen"));
适用于除Facebook以外的所有应用程序,该应用程序将我的网址裁剪为http://example.com。
我已经找了其他的Intent.EXTRA_XY标志,但似乎都没有合适。
有什么方法吗?