android访问html页面_html/css_WEB-ITnose
程序员文章站
2024-01-09 20:04:10
...
Activity代码如下:
package com.example.reg; import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.webkit.WebView; public class WebViewActivity extends Activity{ private static final String tag = WebViewActivity.class.getSimpleName(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.webview); WebView webview = (WebView) findViewById(R.id.web_view); webview.getSettings().setJavaScriptEnabled(true); //webview.loadUrl("http://www.baidu.com"); //用file://来指定本地文件 webview.loadUrl("file:///android_asset/html/test.html"); Log.d(tag, "执行结束.."); } }
html页面路径:
\reg\assets\index.html \reg 为项目名称
HTML代码如下:
Hello First Html.. First Html
推荐阅读
-
android访问html页面_html/css_WEB-ITnose
-
为什么list-style:none不起作用?_html/css_WEB-ITnose
-
在哪下载网页版的帮助文档?_html/css_WEB-ITnose
-
DIV+CSS备录_html/css_WEB-ITnose
-
CSS秘密花园: 动画状态_html/css_WEB-ITnose
-
在IE7及一下字是横的显示的,怎么解决_html/css_WEB-ITnose
-
三级导航下拉菜单 在线等_html/css_WEB-ITnose
-
使用PHP实现生成HTML静态页面_PHP
-
Design and prototype UI, interaction and animation in Interface Builder_html/css_WEB-ITnose
-
css实现横向下拉菜单_html/css_WEB-ITnose