C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Android WebView ExampleAndroid WebView is used to display web page in android. The web page can be loaded from same application or URL. It is used to display online content in android activity. Android WebView uses webkit engine to display web page. The android.webkit.WebView is the subclass of AbsoluteLayout class. The loadUrl() and loadData() methods of Android WebView class are used to load and display web page. Android WebView ExampleLet's see the simple code to display TheDeveloperBlog.com web page using web view. WebView mywebview = (WebView) findViewById(R.id.webView1); mywebview.loadUrl("http://www.TheDeveloperBlog.com/"); Let's see the simple code to display HTML web page using web view. In this case, html file must be located inside the asset directory. WebView mywebview = (WebView) findViewById(R.id.webView1); mywebview.loadUrl("file:///android_asset/myresource.html"); Let's see another code to display HTML code of a string. String data = "<html><body><h1>Hello, TheDeveloperBlog!</h1></body></html>"; mywebview.loadData(data, "text/html", "UTF-8"); Complete Android WebView ExampleLet's see a complete example of Android WebView. activity_main.xmlFile: activity_main.xml
To add the web page (.html, .jsp) locally in application, they are required to place in the assets folder. An assets folder is created as: right click on app -> New -> Folder -> Assets Folder ->main or simply create an assets directory inside main directory. Activity classFile: MainActivity.java
package example.TheDeveloperBlog.com.webview; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.webkit.WebView; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); WebView mywebview = (WebView) findViewById(R.id.webView); // mywebview.loadUrl("https://www.TheDeveloperBlog.com/"); /*String data = " Output: Let's see the output if you load the HTML page. Let's see the output if you load the TheDeveloperBlog.com web page.
Next TopicAndroid SeekBar Example
|