2

我正在开发一个包含许多 html 页面的应用程序。我在 Eclipse 的原始文件夹中创建了这些。

我将制作许多 html 文件,并且我只想为要在每个 html 文件中调用的 css 文件设置一个位置。此应用程序的工作方式是 loadData 方法显示 html 页面,如下所示:

webview.loadData(readTextFromResource(R.raw.gen1), "text/html", "utf-8");

我很感激任何想法。

4

1 回答 1

6

您可以在项目资产中复制 html 和 css 文件,并将 html 文件从资产加载到 webview,如下代码所示:

    WebView wv;  
    wv = (WebView) findViewById(R.id.webView1);  
    wv.setBackgroundColor(0);
    wv.setBackgroundResource(android.R.color.black);
    wv.setWebChromeClient(new WebChromeClient());
    wv.setWebViewClient(new WebViewClient());
    wv.getSettings().setJavaScriptEnabled(true);
    wv.getSettings().setPluginsEnabled(true);
    wv.loadUrl("file:///android_asset/Index_Animation/test.html");

像下面的屏幕截图:

在此处输入图像描述

并在下面的html文件中引用css:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="./style.css" type="text/css" media="screen"><!--This line refer the css file-->

  </head>
    <body bgcolor="#000000">        

                <div class="col_left">
                    <div class="logo">
                        <div class="circles">
                            <div class="circle"></div>
                            <div class="circle1"></div>
                            <div class="circle2"></div>
                        </div>
                        <center>
                        <img src="./Untitled.png" />
                        </center>
                    </div>

                </div>

</body></html>
于 2012-06-26T09:31:48.770 回答