要在WebView中實(shí)現(xiàn)網(wǎng)頁(yè)與原生應(yīng)用的交互,您需要使用JavaScriptInterface。以下是一個(gè)簡(jiǎn)單的示例,展示了如何在Android WebView中實(shí)現(xiàn)網(wǎng)頁(yè)與原生應(yīng)用的交互。
activity_main.xml
文件中添加WebView: android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
MainActivity.java
中設(shè)置WebView并啟用JavaScript:import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.JavascriptInterface;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends AppCompatActivity {
private WebView webView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webView = findViewById(R.id.webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new WebViewClient());
webView.setWebChromeClient(new WebChromeClient());
webView.addJavascriptInterface(new WebAppInterface(this), "Android");
webView.loadUrl("https://yourwebsite.com");
}
public class WebAppInterface {
Context mContext;
WebAppInterface(Context c) {
mContext = c;
}
@JavascriptInterface
public void showToast(String toast) {
Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
}
}
}
在這個(gè)示例中,我們創(chuàng)建了一個(gè)名為WebAppInterface
的內(nèi)部類,并在其中定義了一個(gè)名為showToast
的方法。我們還使用@JavascriptInterface
注解標(biāo)記了這個(gè)方法,以便在JavaScript中調(diào)用它。
<!DOCTYPE html>
<html>
<head>
<title>WebView Interaction</title>
<script type="text/javascript">
function showToast() {
Android.showToast("Hello from the web!");
}
</script>
</head>
<body>
<button onclick="showToast()">Show Toast</button>
</body>
</html>
當(dāng)用戶點(diǎn)擊“Show Toast”按鈕時(shí),將調(diào)用原生應(yīng)用中的showToast
方法,并顯示一個(gè)Toast消息。
這只是一個(gè)簡(jiǎn)單的示例,您可以根據(jù)需要擴(kuò)展此方法以實(shí)現(xiàn)更復(fù)雜的交互。請(qǐng)注意,為了確保應(yīng)用的安全性,請(qǐng)始終驗(yàn)證從網(wǎng)頁(yè)傳遞的數(shù)據(jù),并遵循最佳實(shí)踐。