Issue
I'm using webview in my application and giving hardcoded URL using the code. All things are working perfectly fine, but one thing came across when I was testing it on 10.1" tablet. The URL which I have provided works fine with the phone but on tablet it redirects itself to the desktop version of the URL.
Any idea how to prevent that from happening. I'm using this URL: http://search.yahoo.com/mobile/s?submit=oneSearch&.intl=us&.lang=en&.tsrc=yahoo&.sep=fp&x=0&y=0&p=bike
I have specifically mentioned mobile in the URL, but still it is redirecting. Any idea..??
Solution
@Eldhose M Babu and @ankitmakwana: I have used that, but I''m not sure what is missing in that. I have attached the code, please have a look and guide me:
mWebview.setWebViewClient(new WebViewClient() {
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
// TODO Auto-generated method stub
super.onPageStarted(view, url, favicon);
mWebview.setVisibility(View.GONE);
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
@Override
public void onPageFinished(WebView view, String url) {
// TODO Auto-generated method stub
super.onPageFinished(view, url);
mWebview.setVisibility(View.VISIBLE);
mWebview.requestFocus();
}
public void onLoadResource(WebView view, String url) {
mWebview.loadUrl("javascript:(function() { "
+ "document.getElementsByTagName('header')[0].style.display = 'none'; "
+ "})()");
mWebview.loadUrl("javascript:(function() { "
+ "document.getElementsByTagName('footer')[0].style.display = 'none'; "
+ "})()");
mWebview.loadUrl("javascript:(function() { "
+ "document.getElementsByTagName('section').search_again.style.display = 'none'; "
+ "})()");
}
});
mWebview.loadUrl("http://search.yahoo.com/mobile/s?submit=oneSearch&.intl=us&.lang=en&.tsrc=yahoo&.sep=fp&x=0&y=0&p=bike");
setContentView(mWebview);
Answered By - Anupam
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.