私のAndroidアプリケーションで、いくつかのWebサイトを開きました。アプリケーションを介して、facebbok で Web サイトの 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リンクを取得する方法。