Android examples for User Interface:WebView
create WebView and config it
//package com.java2s; import android.content.Context; import android.graphics.Color; import android.webkit.WebSettings; import android.webkit.WebView; public class Main { public static WebView createWebView(Context context) { final WebView web_V = new WebView(context); web_V.setBackgroundColor(Color.TRANSPARENT); WebSettings webSettings = web_V.getSettings(); webSettings.setJavaScriptEnabled(true); return web_V; }//from w w w . jav a 2s .co m }