kumaresh17
Lurker
Hi,
My webView Doesnot load the URL
foolowing code snipist
 
WebView mWebView ;
 
 
				
			My webView Doesnot load the URL
foolowing code snipist
WebView mWebView ;
mWebView = (WebView)findViewById(R.id.mWebView);
 mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl(
http://developer.android.com/index.html
);
 mWebView.loadUrl(
http://developer.android.com/index.html
);
I have given this tag 
<uses-permissionandroid:name="android.permission.INTERNET"></uses-permission>
in the manifest also.
Andriod default native brower can open the above url but through my application using WebView It gives the Page is not available, i tried with "http://www.google.com" url also but the same error,
NOTE:- I am getting error in simulator , In Andriod device it is running fine
<uses-permissionandroid:name="android.permission.INTERNET"></uses-permission>
in the manifest also.
Andriod default native brower can open the above url but through my application using WebView It gives the Page is not available, i tried with "http://www.google.com" url also but the same error,
NOTE:- I am getting error in simulator , In Andriod device it is running fine
Please help where i am doing wrong
 
	