Facebook正在Android上裁剪我的共享网址

时间:2013-12-13 09:40:58

标签: android facebook

我想通过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标志,但似乎都没有合适。

有什么方法吗?

0 个答案:

没有答案