我正在用android开发PhoneGap应用程序.
在某些情况下,应用程序通过Internet连接到外部网页.
由于用户可能单击网页上的链接并转到不允许的站点,因此我需要跟踪cordova webview网址的更改.
因此,有一种方法可以获取我们与PhoneGap连接的网址?
代码示例:
public class MyPhoneGapActivity extends DroidGap
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
super.init();
super.clearCache();
super.clearHistory();
super.appView.getSettings().setAppCacheEnabled(false);
super.loadUrl("http://www.google.com");
String WebViewUrl = ??
//I need WebViewUrl = "http://www.google.com"
}
}
解决方法:
我找到了!
String WebViewUrl = appView.getUrl()