在我的 android 应用程序中,我打开了一些网站。我想通过我的应用程序在 facebbok 上分享网站的 url 链接。我该怎么做。我可以通过给定的代码分享到 facebook 的 url 链接。
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
// Add data to the intent, the receiving app will decide
// what to do with it.
share.putExtra(Intent.EXTRA_SUBJECT, "Title Of The Post");
share.putExtra(Intent.EXTRA_TEXT, "url link");
startActivity(Intent.createChooser(share, "Share link!"));
但是如何获取我正在浏览的 url 链接。