我希望从我的可绘制资源文件夹中设置一个静态图像作为我的 OpenGL 动画的背景。由于动画位于 aGLSurfaceView
我尝试将GLSurfaceView
' 背景设置为可绘制资源,但这不起作用。
<android.opengl.GLSurfaceView
android:id="@+id/graphics_glsurfaceview1"
android:layout_width="fill_parent"
android:layout_height="500dp"
android:background="@drawable/background" />
任何想法我将如何为我的 OpenGL 动画设置背景图像。我的班级有onSurfaceCreated
, onDrawFrame
,onSurfaceChanged
方法,GLSurfaceView
所以也许在那里的某个地方?