In some applications, the web page from the link does not open in the browser, but directly inside the application. Tell me, how are the elements for such an implementation. Which way to dig?
2 answers
look towards webview
mWebView.loadUrl("http://developer.alexanderklimov.ru/android"); You can read more in Russian here: http://developer.alexanderklimov.ru/android/mybrowser.php
|
WebView vw = (WebView) findViewById(R.id.webView); vw.setWebViewClient(new WebViewClient()); |
WebViewand Chrome Custom Tabs . - eugeneek