当前位置:  开发笔记 > 前端 > 正文

在android中显示静态html页面

如何解决《在android中显示静态html页面》经验,为你挑选了2个好方法。



1> P.Melch..:

您可以使用加载Web视图的内容

// add a webview with id @+id/the_webwiev to your main.xml layout file
WebView wv = (WebView)findViewById(R.id.the_webview);
wv.loadUrl("file:///android_asset/myweb.html");



2> Codemonkey..:

嗯,您是否尝试从官方网页上关注WebView示例?这很简单.

http://developer.android.com/resources/tutorials/views/hello-webview.html

我遵循了这一点,并且没有实现WebView的麻烦.对于非常简单的事情,您的代码看起来过于复杂.

如果您的文件名为pmi_help.html(位于/ assets /文件夹中),则使用以下命令加载:

    mWebView.loadUrl("file:///android_asset/pmi_help.html");


非常感谢你的支持,它的工作正常现在我有另一个任务,如果你可以帮助我,我想在Web视图中将图像设置为背景.
推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有