为什么html5功能无法在我的Android应用程序中运行?

时间:2012-09-17 17:54:35

标签: android html5

我想使用html文件,我在部署它时做了它,它不会锻炼(需要显示输入的html页面,但是当我部署时它显示网页不可用)!错误消息也不在LOG中!请帮忙。我在做什么错了?

 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>

1 个答案:

答案 0 :(得分:1)

您需要使用:

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

摆脱's'

<强>更新

您还可以使用以下网址加载页面

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

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