我在res下的raw文件夹中有一个演示文件。当我单击按钮打开文件时出现空白屏幕我无法解决问题。
以下是代码:
对于xml文件:
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
对于活动:
package com.ashsoft.basiccprogram;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class First extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.first);
WebView webView = (WebView) this.findViewById(R.id.webView1);
webView.getSettings().setBuiltInZoomControls(true);
webView.loadData(readTextFromResource(R.raw.demo), "text/html", "utf-8");
}
private String readTextFromResource(int resourceID)
{
InputStream raw = getResources().openRawResource(resourceID);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
int i;
try
{
i = raw.read();
while (i != -1)
{
i = raw.read();
}
raw.close();
}
catch (IOException e)
{
e.printStackTrace();
}
return stream.toString();
}
};
我得到一个空白的屏幕。 demo.html保存在原始文件夹中。
答案 0 :(得分:1)
将demo.html
移至assets
文件夹并使用:
webView.loadUrl("file:///android_asset/demo.html");