如何使用phonegap从一项活动开始另一项活动?

发布于 2025-01-03 01:27:44 字数 83 浏览 1 评论 0原文

我的活动扩展了 DroidGap。我需要通过单击按钮启动另一个活动。该按钮位于窗口内加载的网络视图内。

如果有人有任何想法,请提出建议。

I have my activity extending DroidGap. I need to start another activity on a button click. The button is inside the webview that is loaded inside the window.

If any one is having any idea, please suggest.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜雨飘雪 2025-01-10 01:27:44

为按钮添加点击事件:

<button type="button" onclick="your_button.performClick();">Your Button</button>

在WebView中设置点击事件:

WebSettings ws = wv.getSettings();
ws.setJavaScriptEnabled(true);
wv.addJavascriptInterface(new Object() {
  public void performClick() {
    // Your can start Activity here
       Intent intent = new Intent();
       // set Activity which you want to start
       // Set flags, actions and other parameters if required
       this.cordova.startActivity(intent);
  }
}, "your_button");  

Add click event for button:

<button type="button" onclick="your_button.performClick();">Your Button</button>

Set click event in WebView :

WebSettings ws = wv.getSettings();
ws.setJavaScriptEnabled(true);
wv.addJavascriptInterface(new Object() {
  public void performClick() {
    // Your can start Activity here
       Intent intent = new Intent();
       // set Activity which you want to start
       // Set flags, actions and other parameters if required
       this.cordova.startActivity(intent);
  }
}, "your_button");  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文