2

我想使用 html 文件,我在部署时就这样做了,它不会锻炼(需要显示输入 html 页面,但在部署时显示网页不可用)!错误消息也不在日志中!请帮助。我在哪里做错了?

 public class TestActivity extends Activity {
    /** Called when the activity is first created. */
    WebView webView =null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        webView =(WebView)findViewById(R.id.web);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.setWebChromeClient(new WebChromeClient());
        webView.loadUrl("file:///android-assets/www/index.html");

    }
}

这是我的javascript。

function sayhello(){
alert("hi", document.getElementById('name'),value);
}

和 html 文件在这里

<!DOCTYPE html>
<html>
<head>
<script src="index.js"></script>
</head>
<body>
What is ur name  ?
<input id="name" value="">
<button onclick="sayhello()">say hello</button>
</body>
</head>
</html>

和布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <WebView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/web"
        android:text="@string/hello" 
        />

</LinearLayout>
4

1 回答 1

1

你需要使用:

file:///android-asset/www/index.html

只要去掉's'

更新:

您还可以通过以下方式加载页面:

webView.loadDataWithBaseURL(null, html, "text/html", "utf-8",null);

第二个参数是您要加载的页面。

于 2012-09-17T18:35:04.463 回答