缓慢加载本地HTML文件android

时间:2014-09-15 09:33:37

标签: android html local assets

我正在从assets文件夹加载一个html。它位于图像视图下方。该代码有效,但html文件在设备上显示需要一秒钟。

这是代码:

 public class FgmIsChildAbuse extends Activity  {


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.webview);

     WebView mWebView;
        mWebView = (WebView) findViewById(R.id.webviewm1);

        WebSettings webSettings = mWebView.getSettings();
        webSettings.setJavaScriptEnabled(true);

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

        ImageView ImageView1 = (ImageView) findViewById(R.id.ImageView1);

        Resources res = getResources(); /** from an Activity */

        ImageView1.setImageDrawable(res.getDrawable(R.drawable.images_eyes));

        mWebView.getSettings().setRenderPriority(RenderPriority.HIGH);

        mWebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);

        mWebView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);

        webSettings.setRenderPriority(WebSettings.RenderPriority.HIGH);


   }


}

以下是其中一个html文件的示例

<html>
<head>
<title>CFAB</title>
<meta name="viewport" content="width=300, initial-scale=1" />
<link rel="stylesheet" media="all" href="master.css" type="text/css" />

</head>

<body bgcolor=transparent>
<FONT COLOR="#000000" size = 3>

<div class="outer" data-role="page" data-theme="a">
    <div class="main" data-role="content">

        <div class="tab-content">
            <div class="tab1 readtab">


                <h3>Female Genital Mutilation (FGM) is Child Abuse</h3>

                <p>Over <strong>100,000</strong> women in the UK have been <strong>victims</strong> of Female Genital Mutilation (FGM). The vast majority of these victims will have been subjected to this horrific form of abuse either <strong>before they came to the UK</strong> or they will have been taken, as children, to their parents' <strong>country of origin</strong> to undergo this abuse.</p>

                <p>This awareness course is designed to help <strong>practitioners</strong> understand what FGM is as well as the context within which it takes place and the relevant legislation to combat it. Critically, it is to build <strong>confidence</strong> so that professionals are better prepared to identify those children most at risk of FGM and those who may have been victims of this type of abuse.</p>



          </div> 
    </div>
    </div>
</div>
</body>
</html>

0 个答案:

没有答案