Android中Webview使用javascript调用事先定义好的Java函数
生活随笔
收集整理的這篇文章主要介紹了
Android中Webview使用javascript调用事先定义好的Java函数
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?1. 首先定義好一個類,專們用于給javascript調用
public class JavaScriptInterface {// share your newspublic void share(String newsImageUrl, String newsTitle, String newsUrl) {Intent intent = new Intent(ActivityHomeRang.this,ActivityShare.class);Bundle news = new Bundle();news.putString("ImageUrl", newsImageUrl);news.putString("Title", newsTitle);news.putString("Url", newsUrl);intent.putExtras(news);startActivity(intent);} }?
2. 然后需要監聽你的WebView, 給它加上對外的事件監聽
WebView testView; ... testView.addJavascriptInterface(new JavaScriptInterface(), "android");?
3. 服務端網頁的調用代碼
function callAndroidShare() {android.share('http://www.test.com', 'test title', 'http://www.test.com/news.aspx'); }?
總結
以上是生活随笔為你收集整理的Android中Webview使用javascript调用事先定义好的Java函数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: IdHttpServer实现webser
- 下一篇: SQL字符串处理--按分割符拆分字符串T