如何获取网站的网址?

时间:2013-02-15 09:07:57

标签: android

在我的Android应用程序中,我打开了一些网站。我想通过我的应用程序分享facebbok上网站的网址链接。我该怎么做。我可以通过给定的代码分享到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!"));

但是如何获取我正在浏览的网址链接。

2 个答案:

答案 0 :(得分:0)

你知道你在浏览器中会遇到什么“url”吗? 从您的Android应用程序肯定你会给一些URL链接浏览。 只需将该URL保存为字符串,您就可以轻松共享该字符串。另外,如果您在浏览器中或浏览webview内容意味着,您可以使用webview.getUrl()方法。这就不是您所要求的意思,请更新你的问题

答案 1 :(得分:0)

假设您在应用中使用WebView,那么您可以使用geUrl();方法获取当前网页的网址