GL stack underflow happens at glPopMatrix();
I can't figure out the problem I have.. But I just guess push & pop Matrix...
I know Popping the stack with nothing on it can occur 'stack underflow... but I don't think I got that problem.. please give me an answer!
gl.glMatrixMode(GL10.GL_MODELVIEW);
            gl.glLoadIdentity();
            gl.glPushMatrix();
                gl.glScalef(1f, 1f, 1f);
                gl.glTranslatef(0f, 0f, 0f);
                gl.glMatrixMode(GL10.GL_TEXTURE);
                gl.glLoadIdentity();
                gl.glTranslatef(0.0f, bgScroll1,0.0f);
                background.draw(gl);
            gl.glPopMatrix();  //stack underflow happens at this line
 
     
    