好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

android访问html页面_html/css_WEB-ITnose

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://HdhCmsTestbaidu测试数据");        //用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的详细内容...

  阅读:28次