gpt4 book ai didi

android - 如何修复android webview上的错误

转载 作者:行者123 更新时间:2023-11-30 03:17:15 25 4
gpt4 key购买 nike

这是我的代码:

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 文件在 assets 文件夹中,我也对 list 文件设置了权限,但是当我运行应用程序时,我得到强制关闭错误表明问题出在这一行:

aboutwebview.loadUrl("file:///android_asset/pickld.html");

我想知道可能是什么问题。

这是 logcat 错误:

enter image description here

最佳答案

如果这一行导致NPE

 aboutwebview.loadUrl("file:///android_asset/pickld.html");

表示您的 aboutwebview 为空。您要么引用了错误的 ID,要么使用 setContentView(R.layout.edit_profile_settings); 为 Activity 设置了错误的布局。确保你这样做是正确的,以避免 NPE。

关于android - 如何修复android webview上的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19831371/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com