将 GLSurfaceView 类与 android xml 布局结合使用
我想利用Android xml布局。我已经将glSurfaceView放在框架布局中,以便与线性布局结合使用,如下所示...
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<android.opengl.GLSurfaceView android:id="@+id/surfaceviewclass"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
<LinearLayout android:id="@+id/gamecontrolslayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="5"
android:background="@drawable/backdrop">
//some layout stuff
</LinearLayout>
<LinearLayout>
然后我这样称呼我的布局
setContentView(R.layout.main);
GLSurfaceView glSurfaceView = (GLSurfaceView)findViewById(R.id.surfaceviewclass);
in onCreate();
我怎么能调用我的glSurfaceView,这样我就可以利用这样的xml布局,并引用我自己的GLSurfaceView类(下面是引用我自己的GLSurfaceView类的代码)...
glSurfaceView = new MyGLSurfaceView(this);
setContentView(glSurfaceView);
有没有办法将这两者结合起来?我想这样做,因为我在我的glSurfaceView类中有很多东西,比如文件加载和触摸事件。只有我刚刚考虑过实现这个新布局