所以这是我的代码:
public class AboutActivity extends Activity{
WebView aboutwebview;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.edit_profile_settings);
aboutwebview = (WebView) findViewById(R.id.aboutwebview);
aboutwebview.setHorizontalScrollBarEnabled(false);
aboutwebview.loadUrl("file:///android_asset/pickld.html");
}
}
这是xml
文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="#7fad33"
android:gravity="center"
android:orientation="horizontal" >
<TextView
android:id="@+id/tv0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Our Team"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#fff" />
</LinearLayout>
<WebView
android:id="@+id/aboutwebview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
而且我很确定该html
文件位于资产文件夹中,我还在清单文件上设置了权限,但是当我运行该应用程序时,我遇到了强制关闭错误,它表示问题出在这一行:
aboutwebview.loadUrl("file:///android_asset/pickld.html");
我想知道可能是什么问题。
这是 logcat 错误: