我希望在OnPageStarted()
中开始加载页面时更新我的网址,但是当我运行这些代码时
public class web_client extends WebViewClient {
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
EditText editText=view.findViewById(R.id.edit);
editText.setText(url);
}
}
我收到以下错误
03-10 12:05:35.022 3385-3385/com.example.mmalishant.mvd E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.mmalishant.mvd, PID: 3385
java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.EditText.setText(java.lang.CharSequence)' on a null object reference
at com.example.mmalishant.mvd.web_client.onPageStarted(web_client.java:35)
at com.android.webview.chromium.WebViewContentsClientAdapter.onPageStarted(WebViewContentsClientAdapter.java:517)
at org.chromium.android_webview.AwContentsClientCallbackHelper$MyHandler.handleMessage(AwContentsClientCallbackHelper.java:144)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6119)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
03-10 12:05:35.585 1269-1269/? E/EGL_emulation: tid 1269: eglCreateSyncKHR(1669): error 0x3004 (EGL_BAD_ATTRIBUTE)
答案 0 :(得分:0)
目前您在
中使用的view
EditText editText=view.findViewById(R.id.edit);
是该方法的WebView
。我确信您的EditText
中不能有WebView
。
解决方案是你应该在Activity或Fragment的rootView中findViewById
。
更新:
由于WebViewClient
位于另一个类和文件中,因此可以使用:
EditText editText=((YourActivityClassName)view.getContext()).findViewById(R.id.edit);