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?

  • one
    So you have the third tag in question - WebView. Here is the answer. - Vladimir Parfenov
  • Dig in the direction of WebView and Chrome Custom Tabs . - eugeneek

2 answers 2

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());