layout - WebView underneath Andengine -
i'm trying put joypad made andengine on webview view of ipcamera. how can do? i've searched lot that, still haven't found solution. thank much
you didn't mention version of andengine using.
if using gles2 (same technique may work gles1 branch have not verified that), @ andengine textbreakexample.
that example shows how use org.andengine.opengl.view.rendersurfaceview in combination layout linearlayout. "other layout" can contain - example uses edittext, should able use webview using same technique.
be sure , check res/layout/textbreakexample.xml file. note these methods in textbreakexample.java file
@override protected int getlayoutid() { return r.layout.textbreakexample; } @override protected int getrendersurfaceviewid() { return r.id.textbreakexample_rendersurfaceview; } https://github.com/nicolasgramlich/andengineexamples/blob/gles2/res/layout/textbreakexample.xml
also might check out layout file https://github.com/nicolasgramlich/andengineexamples/blob/gles2/res/layout/xmllayoutexample.xml
Comments
Post a Comment