i am trying to load a web page in webview
but it is not loading web page in webview
instead it is asking another browser app to load web page
i want to load webpage in my app webview
this is my code: it ask another app to load page
package com.example.webview;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.webkit.WebView;
public class MainActivity extends ActionBarActivity {
private WebView browser;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
browser = (WebView) findViewById(R.id.webView1);
browser.loadUrl("http://www.google.com");
}
}