我在片段中使用了webview。
private void LoadWebView()
{
privacy_Webview.getSettings().setJavaScriptEnabled(true);
privacy_Webview.setWebViewClient(new WebViewClient());
privacy_Webview.loadUrl("http://www.google.com");
}
我收到错误
java.lang.NullPointerException: Attempt to invoke virtual method 'android.webkit.WebSettings android.webkit.WebView.getSettings()' on a null object reference
错误发生在以下行: - 。privacy_Webview.getSettings()setJavaScriptEnabled(真);
在按钮上单击一个片段,此片段将加载其中包含Web视图。
我无法弄清楚这个问题。
答案 0 :(得分:0)
您的fragment_forgot_password
似乎不包含wv_privacy
,因此rootView.findViewById(R.id.wv_privacy)
会返回null
。