Android examples for android.webkit:WebView
set Web Contents Debugging Enabled
import android.os.Build; import android.webkit.WebView; public class Main{ public static void setWebContentsDebuggingEnabled(boolean enabled) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { WebView.setWebContentsDebuggingEnabled(enabled); }/*from w ww .j ava 2s. c o m*/ } }