是否可以在使用 Dreamweaver cs5.5 开发的 android 应用程序中放入多个 html5 文件?

发布于 2024-12-25 04:43:26 字数 182 浏览 0 评论 0原文

我们可以在用dreamweaver cs5.5开发的android应用程序中自由放置多个html5文件吗?
示例:

page1.html  
page2.html  
page3.html  

然后提供页面之间的超链接?

我尝试这样做,但浏览器拒绝加载页面。

can we freely put more than one html5 file in android app developed with dreamweaver cs5.5?
example:

page1.html  
page2.html  
page3.html  

then provide hyperlinks between the pages?

I tried doing this but the browser refuses to load the pages.

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

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

发布评论

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

评论(1

梦晓ヶ微光ヅ倾城 2025-01-01 04:43:26

如果您的 HTML 文件位于 assets 文件夹中,例如位于 /assets/html/ 的子文件夹中,则以下内容将起作用...

Java 代码可能如下所示:

private void displayHTML5Page(String filename) {
        webView.loadUrl("file:///android_asset/html/index.html");
        setContentView(webView);

在 HTML 中,您访问其他页面使用类似的东西:

<a href="file:///android_asset/html/anotherpage.html">Here's a Second Page</a>
<a href="file:///android_asset/html/anotherpage2.html">Here's a Third Page</a>
<a href="file:///android_asset/html/anotherpage3.html">Here's a Fourth Page</a>
....

If you have your HTML files in the assets folder, say in a subfolder in /assets/html/, the following would work...

Java code could look something like this:

private void displayHTML5Page(String filename) {
        webView.loadUrl("file:///android_asset/html/index.html");
        setContentView(webView);

In HTML you access other pages using something like:

<a href="file:///android_asset/html/anotherpage.html">Here's a Second Page</a>
<a href="file:///android_asset/html/anotherpage2.html">Here's a Third Page</a>
<a href="file:///android_asset/html/anotherpage3.html">Here's a Fourth Page</a>
....
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文