在我的android應用程序中,我打開了一些網站。我想通過我的應用程序分享facebbok上的網站鏈接。我該怎麼做。我可以通過給定的代碼分享鏈接到Facebook的鏈接。如何獲取網站的網址?
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鏈接。
向我們展示如何** **你提出這個鏈接。然後我可以向您展示獲取URL的不同方法 – MCKapur 2013-02-15 09:14:32