android使用web加載網頁的js問題
阿新 • • 發佈:2017-10-31
actionbar save handle pub 有用 itemid scrip bar end
android好久沒有用了,用它來打包個html5遊戲,代碼如下
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); WebView webView=new WebView(this); webView.loadUrl("http://www.mimi199.com/);
//多加上這句話就可以了 webView.setWebViewClient(new MyWebViewClient()); }
使用時發現所有的js都無法使用來,找來半天終於知道問題在哪裏了,使用webview默認是吧js關閉的,因此是不會執行js代碼的,這個時候只需要加上一句話就夠了
webView.getSettings().setJavaScriptEnabled(true);//支持js
是的,這句話就夠了,true表示支持js false表示不支持js,默認是不支持的,圖樣啊
完整代碼如下:
package activity.ysmall.cc.ysmall; importandroid.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.webkit.WebView; public classMainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); WebView webView=new WebView(this); webView.getSettings().setJavaScriptEnabled(true);//支持js webView.loadUrl("http://www.mimi199.com/"); webView.setWebViewClient(new MyWebViewClient()); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
與君共勉
android使用web加載網頁的js問題