当我在我的应用程序 webview 中加载上述 url 时,它更改为http://m.allrecipes.com但是当我在浏览器中加载相同的 url 时,它的 url 为http://allrecipes.com。
有什么方法可以在我的应用程序 webview 中加载普通 url(http://allrecipes.com)而不加载移动页面(http://m.allrecipes.com)
任何人都知道请帮助我
go.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (Searchtext.getText().toString().equalsIgnoreCase("")) {
alertDialog = new AlertDialog.Builder(OnlineRecipe.this)
.create();
alertDialog.setTitle("Message");
alertDialog.setMessage("Please Enter Some Word");
alertDialog.setButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
// Write your code here to execute after
// dialog closed
alertDialog.dismiss();
}
});
// Showing Alert Message
alertDialog.show();
} else {
String url = "http://allrecipes.com/search/default.aspx?qt=k&wt="
+ Searchtext.getText().toString()
+ "&rt=r&origin=Recipe Search Results";
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl(url);
}
}
});