gpt4 book ai didi

java - Phonegap Java 调用 Javascript 函数

转载 作者:行者123 更新时间:2023-11-29 21:15:45 25 4
gpt4 key购买 nike

我目前正在为 android 制作一个 hello world 类型的 Phonegap 应用程序,我在其中从原生 android 代码调用一个 javascript 函数来设置我的应用程序中其中一个段落的文本。

我在我的应用程序的 html 中定义了一个 javascript 函数,我想在应用程序加载后从我的 Activity 中调用它。该函数只是在我的应用程序中设置段落的文本。我无法让它工作。

这是我的 java Activity 代码:

public class MyPhoneGapActivity extends DroidGap {

public DroidGap c;
public LoadInfo info;

@SuppressLint("SetJavaScriptEnabled")
@JavascriptInterface
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.init();
c = this;
appView.getSettings().setJavaScriptEnabled(true);
appView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
appView.loadUrl("file:///android_asset/www/index.html");

appView.setWebViewClient(new WebViewClient() {
public void onPageFinished(WebView view, String url) {
MyPhoneGapActivity.this.runOnUiThread(new Runnable() {
public void run() {
c.sendJavascript("javascript:getMassTimes()");
}
});
}
});
}
}

这是我的 javascript 和 html 代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport"
content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Ionic Seed App</title>
<link href="lib/css/ionic.css" rel="stylesheet">

<link href="css/app.css" rel="stylesheet">
<link href="lib/css/mycss.css" rel="stylesheet">
<script src="lib/js/ionic.js"></script>
<script src="lib/js/angular/angular.js"></script>
<script src="lib/js/angular/angular-animate.js"></script>
<script src="lib/js/angular/angular-sanitize.js"></script>
<script src="lib/js/angular-ui/angular-ui-router.js"></script>
<script src="lib/js/ionic-angular.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="http://code.jquery.com/jquery-2.1.0.js"></script>
</head>
<body ng-app="myApp">
<script type="text/javascript">
function getMassTimes() {
document.getElementById("massTimes").textContent = "This is some text";
}
</script>
<div>
<header-bar title="Saint David the King"
class="bar bar-header bar-energized">
<h1 class="title">Saint David the King</h1>
</header-bar>
<br>
<content scroll="true" has-header="true" width="100%" height="100%"
id="content"> <img alt="Saint David the King"
src="file:///android_asset/www/img/saintdavidthekingbackground2.png"
width="100%" /> <br>
<p id="massTimes">
</p>
</content>
</div>
</body>
</html>

我做错了什么吗?我看过这些网站:

Resolved - Call javascript function from Java

How to call javascript function from java code

https://groups.google.com/forum/?fromgroups=#!topic/android-developers/1o9PgfmyRd8

http://www.jumpbyte.com/2012/phonegap-native-to-javascript/

Javascript calls from Android using PhoneGap

how to call javascript function from android using phonegap plugin

我已经尝试过他们身上的东西,但我就是无法让它发挥作用。

感谢任何帮助!

最佳答案

c.sendJavascript("javascript:getMassTimes()"); 替换为myBrowser.loadUrl("javascript:getMassTimes()");

这对我的问题有效。

如果你想从 Activity 中传递一个字符串给 javascript 使用

String msgToSend = "Hello World!"; myBrowser.loadUrl("javascript:callFromActivity(\""+msgToSend+"\")");

关于java - Phonegap Java 调用 Javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21483506/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com