i have a link for example,"http://google.com" , i need to load the web page in to my app either in web view or some other View, but not in default Browser of android , whether it is possible or not.
Thanks
i have a link for example,"http://google.com" , i need to load the web page in to my app either in web view or some other View, but not in default Browser of android , whether it is possible or not.
Thanks
You need to extend WebViewClient, and launch the url within that.
And in your layout xml,
I think you want to load URL in webview within the application. If i am not wrong, then you can have:
And In general, you can also use
webview.loadURL(URL)
method to load URL in webview.Yes you can do it using WebView, use the API , webview.loadUrl(your_url); give internet access permission in Android Manifest file.
Check here,
http://developer.android.com/reference/android/webkit/WebView.html
check e.g. with loadUrl();