October 2018
Intermediate to advanced
464 pages
15h 17m
English
We're going to create the WebView through code so we won't be modifying the layout. We'll start by opening the Android Manifest and following these steps:
<uses-permission android:name="android.permission.INTERNET"/>
WebView webview = new WebView(this);setContentView(webview);webview.loadUrl("https://www.packtpub.com/");