webView = (WebView) findViewById(R.id.lottery_webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setLoadsImagesAutomatically(true);//auto load images
webView.getSettings().setSupportZoom(false);
webView.getSettings().setBuiltInZoomControls(false);//zoom
webView.getSettings().setUseWideViewPort(true); //auto adjust screen
webView.getSettings().setLoadWithOverviewMode(true);
webView.loadUrl(url);
webView.setWebViewClient(new WebViewClient());