I have loaded a website with my WebView. But when I click in any link of that website , the control has been transferred from my WebView to the Android built in browser. I want to browse that site with my WebView.
I want to download book from my site. Another task that is very important to me is when I will download a book from my site ,it will give a password to my software ( android part ). What do I do to receive a password from an web site from the WebView.
This question is very important for me to complete my project.
Waiting for your replies…
The code for webView is just as following:
wv = (WebView) findViewById(R.id.mainwebview);
WebSettings ws = wv.getSettings();
ws.setBuiltInZoomControls(true);
wv.loadUrl("http://m.feedbooks.com/store");
wv.getSettings().setJavaScriptEnabled(true);
above code can help you to display website with your webview