所以我希望能够监控我的 WebView 应用程序正在加载的 URL。我试图完成的主要事情是将 WebView 保留在特定网站内,或者至少能够检测用户何时离开网站的 URL。
例子。如果我有 www.google.com 的基本 URL,当用户点击图片时,他会得到“ http://www.google.com/imghp ”但是它仍然有 www.google.com 的基本 URL,所以如果有一种方法可以监控基本 URL 何时不再是 www.google.com,例如当用户单击搜索结果然后完全被带到不同的网站时。
这样做的目的是我想向用户显示一个对话框或 Toast,让他们知道他们将离开创建此 WebView 应用程序的网站。
任何代码、想法或建议将不胜感激。
示例代码
@Override
public void onLoadResource(WebView view, String url)
{
if (url.equals("http://www.google.com"))
{
//do your own thing here
view.loadUrl(url);
}
else
{
AlertDialog.Builder localBuilder2 = new AlertDialog.Builder(Webview_Main.this);
localBuilder2.setTitle("Hey Wait!");
localBuilder2.setMessage("You currently are about to leave the website\n\nIf you want to stay inside this website, Please click the Go Back button below");
localBuilder2.setIcon(R.drawable.ic_launcher);
localBuilder2.setPositiveButton("Go Back",
new DialogInterface.OnClickListener() {
public void onClick(
DialogInterface paramDialogInterface,
int paramInt) {
web.goBack();
}
});
localBuilder2.setNegativeButton("Continue",
new DialogInterface.OnClickListener() {
public void onClick(
DialogInterface paramDialogInterface,
int paramInt) {
}
});
localBuilder2.show();
};
super.onLoadResource(view, url);
}
然而,上面的代码不起作用,只是不断弹出警告对话框,因为 URL 可能不同。