Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, Just some background... I have a fully functioning game that uses the canvas to draw, and I'm in the process of trying to learn and convert the drawing over to OpenGL ES 1.0. (to keep compatibility.)

What I've been trying to do, Is figure out a way to incorporate the GLSurfaceView and Renderer into the program so that I can switch the drawing over piece by piece. (There are a lot of sprites and I have needs to update often, so I don't want it to take me a month to release the next update.)

It has been suggested that I Use the GLSurfaceView on top of the current SurfaceView, and i'm getting there but I've hit a snag.

I'm basically using the LunarLander example and trying to add on a simple OpenGL renderer that draws a texture on a square and renders it. The goal would be to draw the square on top of the canvas.

Here is the relevant code in the Activity:

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);



        setContentView(R.layout.lunar_layout);


        LinearLayout detailListView = (LinearLayout) findViewById(R.id.dets); // Find the layout where you want to add button

    Button button = new Button(this);
    button.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT));
    detailListView.addView(button);//add view to add



    mGLSV = new BasicGLSurfaceView(this);
    mGLSV.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT));
    detailListView.addView(mGLSV);

    //clipped

The lunar_layout file looks like this:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

    android:layout_width="match_parent"
    android:layout_height="match_parent">



    <com.example.android.lunarlander.LunarView
        android:id="@+id/lunar"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>

    <LinearLayout
       android:id="@+id/dets"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentLeft="true"
       android:layout_alignParentTop="true"
       android:layout_marginLeft="0dp"
       android:layout_marginTop="50dp"
       android:orientation="vertical" >

         <com.google.ads.AdView
             android:id="@+id/adView"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             ads:adSize="BANNER"
             ads:adUnitId="a14ecf8f2d9ef49"
             ads:loadAdOnCreate="true" >
         </com.google.ads.AdView>

    </LinearLayout>



     <RelativeLayout   
         android:id="@+id/relLayout"
         android:layout_width="match_parent"
         android:layout_height="match_parent" >

         <TextView
             android:id="@+id/text"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_centerInParent="true"
             android:gravity="center_horizontal"
             android:text="@string/lunar_layout_text_text"
             android:textColor="#88ffffff"
             android:textSize="24sp"
             android:visibility="visible" />

      </RelativeLayout>

</FrameLayout>

Pretty Simple, I'm trying to use that LinearLayout to add things on top of the Surface View. Notice I also add a scratch Button, just to check the concept works. What I end up with is the canvas, and the button showing up correctly, but no sign of the GLSurfaceView. What am I doing wrong?

share|improve this question

3 Answers

I'd suggest you have your BasicGLSurfaceView already added to your framelayout in XML, and use findViewById(R.id.basicGLSurfaceView1) to get a hold of it, rather than trying to create it programatically:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.example.android.lunarlander.BasicGLSurfaceView 
        android:id="@+id/glSurfaceView1" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent">
    </com.example.android.lunarlander.BasicGLSurfaceView>

    <com.example.android.lunarlander.LunarView
      android:id="@+id/lunar"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>

    <LinearLayout
       android:id="@+id/dets"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentLeft="true"
       android:layout_alignParentTop="true"
       android:layout_marginLeft="0dp"
       android:layout_marginTop="50dp"
       android:orientation="vertical" >

         <com.google.ads.AdView
             android:id="@+id/adView"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             ads:adSize="BANNER"
             ads:adUnitId="a14ecf8f2d9ef49"
             ads:loadAdOnCreate="true" >
         </com.google.ads.AdView>

    </LinearLayout>



     <RelativeLayout   
         android:id="@+id/relLayout"
         android:layout_width="match_parent"
         android:layout_height="match_parent" >

         <TextView
             android:id="@+id/text"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_centerInParent="true"
             android:gravity="center_horizontal"
             android:text="@string/lunar_layout_text_text"
             android:textColor="#88ffffff"
             android:textSize="24sp"
             android:visibility="visible" />

      </RelativeLayout>

</FrameLayout>

You need to tell the GLSurfaceView to start rendering. You have to call (or even override) GLSurfaceView.start() in your GLSurfaceView. Alternatively, setRenderer is public, so if you call mGLSV.setRenderer(myRenderer); in your Activity where myRenderer is an instance of MyRenderer implements GLSurfaceView.Renderer then it should automatically start the rendering without you having to touch start()

EDIT: Actually, start() is called when the view is laid out (i.e. when you setContentView() or add it to whatever layout you set as content view), not when setRenderer is called

It sounds back-to-front but implementing Renderer is for if you just want to render something in the standard android/opengl-es way, whilst extending GLSurfaceView is if you actually want to get under the hood and edit the way android renders. In fact, I would recommend not extending GLSurfaceView at all but doing as much as possible in your GLSurfaceView.Renderer. I have programmed my entire 3D game without extending GLSurfaceView. My code looks like this:

public class stackoverflowTest extends Activity {

MyGLSurfaceView glSurface;
MyRenderer myRenderer;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.main);

    myRenderer = new MyRenderer();

    //Get hold of our GLSurfaceView
    glSurface = (MyGLSurfaceView) findViewById(R.id.graphics_glsurfaceview1);
    // optional
    glSurface.setEGLConfigChooser(true);

    glSurface.setRenderer(myRenderer);
    //Set the renderer. setRenderer will call start() and start the GL thread, which then calls onSurfaceCreated, onDraw etc in the Renderer



}

    @Override
public void onPause(){
    super.onPause();
     glSurface.onPause();
}

@Override
public void onResume() {
       super.onResume();
       glSurface.onResume();
    }
}

}

Renderer:

public class MyRenderer implements Renderer {

@Override
public void onDrawFrame(GL10 gl) {
    // openGL drawing code goes here


}

@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {

    // etc


}

@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
    // etc


}

}

GLSurfaceView:

public class MyGLSurfaceView extends GLSurfaceView {

public MyGLSurfaceView(Context context) {
    super(context);

}

public MyGLSurfaceView(Context context, AttributeSet attribs) {
    super(context, attribs);

}

@Override
public void onPause(){
    super.onPause();
}

@Override
public void onResume(){
    super.onResume();
}

}

If you can stand upgrading to android 2.1 (opengl-es 1.1) you can use point-sprites rather than rendering textured quads or whatever

share|improve this answer
Here is what is confusing me... I've got it to the point that when I hit "back" the canvas disappears and I can see the rendered image. so it's almost as if the canvas is over the renderer, yet the puzzling thing is that that button, and the Adview disappear??? Also commenting out the code that adds the Open GL renderer makes the button and addview re-apear.??? I don't understand that. If the canvas is below the button/add view, how is the GL surface view affecting the button and ad visibility? – cody Dec 14 '11 at 0:58
Now i'm certain layout has something to do with the problem, if I set the visibility of the GLSurface view to gone or invisible, the button and ad reappear. So if you can picture the depth, I want the canvas on the bottom, the GLSurfaceView in the middle, and the button/ad on top. Well the first 2 are right, but whenever the Surface view should be visible, instead it makes the button/ad invisible, while the canvas stays visible?? – cody Dec 14 '11 at 1:11
AAAHHHHRRRGGGGG this is so frusterating. I changed the height of the Surface view to 500px so I could see under it and my renderer is working properly... UNDER the canvas instead of on top. WTF? I can't get the order swapped – cody Dec 14 '11 at 1:26
Swap lunarView and basicGLSurfaceView so that lunarView is before basicGLSurfaceView in the XML. This will put lunarView at the bottom and basicGLSurfaceView draws over the top. It gets confusing very quickly as framelayout renders like a queue not a stack; The first child of framelayout is rendered, then the second on top of the first, third over the top of the second etc You will need to make GLSurfaceView background transparent, as it is not by default. I don't know about making canvas transparent – James Coote Dec 14 '11 at 13:36
It might be easier for development to have the canvas and GLSurfaceView side-by-side since the aim is to eventually replace canvas anyway – James Coote Dec 14 '11 at 13:36
show 1 more comment
up vote 1 down vote accepted

Figured it out myself. Even though SurfaceView is a subclass of View, the way SurfaceView displays through the window is kinda funny, Basically The canvas actually goes through the surfaceview but is behind it in Z order. Because of this Multiple surface views have to be ordered using surfaceview.setZOrderOnTop(true);

Now I just have to worry about making the GLSurfaceView Transparent.

share|improve this answer

Taken from min3d, this should work on making the GLSurfaceView transparent

_glSurfaceView.setEGLConfigChooser(8,8,8,8, 16, 0); 
_glSurfaceView.getHolder().setFormat(PixelFormat.TRANSLUCENT);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.