我正在創建一個應用程序,在該應用程序中必須使用webView並在資產文件夾中顯示保存在應用程序中的HTML文件。這是我的主要活動代碼。嘗試運行WebView應用程序時發生錯誤
public class MainActivity extends Activity {
WebView browser;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
browser = (WebView)findViewById(R.id.wv1);
browser.loadUrl("file:///android_asset/test.htm");
WebSettings webSettings = browser.getSettings();
browser.getSettings().setJavaScriptEnabled(true);
setContentView(browser);
}
}
,這是我的xml文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Test Application"
android:gravity="center_horizontal">
</TextView>
<WebView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/wv1"
android:layout_marginTop="3dp">
</WebView>
whin我試圖運行該應用程序,它會崩潰..
可以在任何請幫助我找出我在做什麼錯誤。
謝謝Matiash,現在它工作正常。 – Devraj