如何加载新的 Activity onclick

发布于 2024-12-04 00:18:44 字数 1264 浏览 1 评论 0原文

当我单击在 WebView 中显示的 HTML 页面内部时,如何更改 Activity 、加载新 Activity 。 Demo.html 在资产中。如何加载新的Activity? 这是资产内的 Demo.html

<html>
        <script language="javascript">
            /* This function is invoked by the activity */
                function wave() {
                    alert("1");
                        //What to do to change on new Activity
                        alert("2");
                }
        </script>
        <body>
            <!-- Calls into the javascript interface for the activity -->
            <a onClick="window.demo.clickOnAndroid()">
            <div style="width:80px;
                        margin:0px auto;
                        padding:10px;
                        text-align:center;
                        border:2px solid #202020;" >
                                <input id="test" type="button" onclick="wave">Click Me!</button>
                </div></a>

        </body>
</html>

当我单击 id="test" 的按钮时该怎么办我会转到 android 应用程序中的新活动,就像我在 android 中使用 Button 时而不是在 JavaScript 中以正常方式所做的那样

 Intent i = new Intent(getApplicationContext(), Test.class);
                        startActivity(i);

How to change Activity , load new Activity, when I click on inside HTML page which I shows inside WebView. Demo.html is in assets. How to load new Activity ?
This is Demo.html inside assets

<html>
        <script language="javascript">
            /* This function is invoked by the activity */
                function wave() {
                    alert("1");
                        //What to do to change on new Activity
                        alert("2");
                }
        </script>
        <body>
            <!-- Calls into the javascript interface for the activity -->
            <a onClick="window.demo.clickOnAndroid()">
            <div style="width:80px;
                        margin:0px auto;
                        padding:10px;
                        text-align:center;
                        border:2px solid #202020;" >
                                <input id="test" type="button" onclick="wave">Click Me!</button>
                </div></a>

        </body>
</html>

What to do so when I click on button with id="test" I go to new activity in android app, like I do in normal way when use Button in android, not in JavaScript

 Intent i = new Intent(getApplicationContext(), Test.class);
                        startActivity(i);

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

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

发布评论

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

评论(2

情绪失控 2024-12-11 00:18:44

如果我理解正确(意味着单击按钮时启动一个新的活动),您应该在此处查看完整的指南:http://developer.android.com/guide/webapps/webview.html,更具体地说是“将 JavaScript 代码绑定到 Android 代码”部分。尝试一下,如果有任何问题请再次回来。希望这有帮助!

If I have understand correct (meaning start a new Activity when clicking on the button) you should check here for a complete guide: http://developer.android.com/guide/webapps/webview.html and more specifically the section 'Binding JavaScript code to Android code'. Try this and if you have any problem come back again. Hope this helps!

风吹雨成花 2024-12-11 00:18:44

看看这个。WebView 可以做什么在 Android 中做什么?。本博客展示了如何通过 JavaScript 调用 Android 活动或方法。

Have a look at this.What WebView can do in Android ?. This blog shows how to call an android activity or method via javascript.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文