I want to load a WebView in my AndEngine scene. I am trying to load it underneath the scene (followed the advice from this thread: WebView underneath Andengine), and it loaded fine when I had these methods above my onLoadEngine() method:
protected int getLayoutID() {
return R.layout.main;
}
protected int getRenderSurfaceViewID() {
return R.id.rendersurfaceview;
}
@Override
protected void onSetContentView() {
super.onSetContentView();
this.mWebView = (WebView) this.findViewById(R.id.webview);
However, I then tried to "loadUrl(mURL)" in AndEngine's onLoadScene() method, but I get a NullPointerException error in LogCat. I know NullPointerExceptions are thrown when "an application attempts to use null in a case where an object is required", but I'm not sure how to fix it.
My layout is this:
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout 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:background="@color/LightSkyBlue" >
<org.andengine.opengl.view.RenderSurfaceView
android:id="@+id/rendersurfaceview"
android:layout_width="fill_parent"
android:layout_height="320dp"
android:layout_gravity="center" />
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="40dp" />
</RelativeLayout>
I would greatly appreciate any help on this! Thanks
*EDIT*In response to Eric:
Here is the LogCat:
08-03 15:15:52.879: D/AndroidRuntime(569): Shutting down VM
08-03 15:15:52.879: W/dalvikvm(569): threadid=1: thread exiting with uncaught exception (group=0x409c01f8)
08-03 15:15:52.949: E/AndroidRuntime(569): FATAL EXCEPTION: main
08-03 15:15:52.949: E/AndroidRuntime(569): java.lang.NullPointerException
08-03 15:15:52.949: E/AndroidRuntime(569): at com.davanprojects.connection2.Control.onLoadScene(Control.java:136)
08-03 15:15:52.949: E/AndroidRuntime(569): at org.anddev.andengine.ui.activity.BaseGameActivity.doResume(BaseGameActivity.java:169)
08-03 15:15:52.949: E/AndroidRuntime(569): at org.anddev.andengine.ui.activity.BaseGameActivity.onWindowFocusChanged(BaseGameActivity.java:85)
08-03 15:15:52.949: E/AndroidRuntime(569): at com.android.internal.policy.impl.PhoneWindow$DecorView.onWindowFocusChanged(PhoneWindow.java:2366)
08-03 15:15:52.949: E/AndroidRuntime(569): at android.view.View.dispatchWindowFocusChanged(View.java:5735)
08-03 15:15:52.949: E/AndroidRuntime(569): at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:851)
08-03 15:15:52.949: E/AndroidRuntime(569): at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2557)
08-03 15:15:52.949: E/AndroidRuntime(569): at android.os.Handler.dispatchMessage(Handler.java:99)
08-03 15:15:52.949: E/AndroidRuntime(569): at android.os.Looper.loop(Looper.java:137)
08-03 15:15:52.949: E/AndroidRuntime(569): at android.app.ActivityThread.main(ActivityThread.java:4424)
08-03 15:15:52.949: E/AndroidRuntime(569): at java.lang.reflect.Method.invokeNative(Native Method)
08-03 15:15:52.949: E/AndroidRuntime(569): at java.lang.reflect.Method.invoke(Method.java:511)
08-03 15:15:52.949: E/AndroidRuntime(569): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
08-03 15:15:52.949: E/AndroidRuntime(569): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
08-03 15:15:52.949: E/AndroidRuntime(569): at dalvik.system.NativeStart.main(Native Method)
And here is where I load the URL:
@Override
public Scene onLoadScene() {
this.mEngine.registerUpdateHandler(new FPSLogger());
final Scene scene = new Scene();
scene.setBackground(new ColorBackground(0.0000f, 0.0000f, 0.0000f));
mWebView.loadUrl("http://***************************.cgi?lx=2&0.3");
I apologize but for privacy reasons I can't actually post the URL. We're using a .cgi server that our robot needs to access, and if the URL is changed by any outside party viewing this it could really screw up the project. But the "*****" up there^ indicate that I'm entering the literal String URL there in loadUrl(). I never actually put it into a variable.
mURLis probablynull. Can you show the LogCat output as well as the pertinent code, includingloadUrland the definition ofmURL? – Eric Aug 3 '12 at 19:32loadUrlcode toonSetContentViewaftermWebViewis set, does it work? I get the feelingonLoadScenemay be called first. – Eric Aug 3 '12 at 19:52findViewById, call it ongetRootView(); I think it's being called on theRenderSurfaceView, which obviously does not contain theWebView. – Eric Aug 3 '12 at 20:01