小編給大家分享一下JavaScript如何實(shí)現(xiàn)交互的示例,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
瑪曲網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。成都創(chuàng)新互聯(lián)公司成立于2013年到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)公司。
示例:
Carson
package com.example.webjs; import android.annotation.SuppressLint; import android.content.DialogInterface; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.webkit.JavascriptInterface; import android.webkit.JsResult; import android.webkit.WebChromeClient; import android.webkit.WebSettings; import android.webkit.WebView; import android.widget.Button; import android.widget.Toast; public class MainActivity extends AppCompatActivity { Button tojs; WebView webView; @SuppressLint("JavascriptInterface") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); webView = findViewById(R.id.web_id); tojs = findViewById(R.id.calljs_but_id); WebSettings webSettings = webView.getSettings(); // 設(shè)置與Js交互的權(quán)限 webSettings.setJavaScriptEnabled(true); // 設(shè)置允許JS彈窗 webSettings.setJavaScriptCanOpenWindowsAutomatically(true); //設(shè)置對象映射 webView.addJavascriptInterface(new JsToAndroid() , "test"); // 先載入JS代碼 // 格式規(guī)定為:file:///android_asset/文件名.html webView.loadUrl("file:///android_asset/text.html"); alteView(webView); tojs.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { String result = "你好"; // webView.loadUrl("javascript:returnResult(" + result + ")"); webView.loadUrl("javascript:returnResult()"); } }); } public class JsToAndroid{ @JavascriptInterface public void hello(final String str ){ runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(MainActivity.this , str , Toast.LENGTH_LONG).show(); } }); } } public void alteView(WebView webView){ // webView.setWebChromeClient(new WebChromeClient()); webView.setWebChromeClient(new WebChromeClient(){ @Override public boolean onJsAlert(WebView view, String url, String message, final JsResult result) { Log.e("tag" ,"執(zhí)行次數(shù)"); AlertDialog.Builder b = new AlertDialog.Builder(MainActivity.this); b.setTitle("Alert"); b.setMessage(message); b.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { result.confirm(); } }); b.setCancelable(false); // b.create().show(); return super.onJsAlert(view, url, message, result); } }); } }
以上是“JavaScript如何實(shí)現(xiàn)交互的示例”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!