我有一个Activity,并且将Activity的内容视图设置为“ R.layout.main.xml”.还有另一个类,其中包含使用openGL创建的动画.现在,我需要在“活动”的背景中使用此动画.
代码是这样的
@OverrIDepublic voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main_pixIE); mGLVIEw = new ClearGLSurfaceVIEw(this); setContentVIEw(mGLVIEw); }
但是我的应用正在崩溃..我该如何解决.
解决方法:
第二次调用setContentVIEw()时,将替换第一次设置的内容,只剩下背景.崩溃很可能是因为您依赖于已删除的主布局中的元素.
您应该在主布局中包含GLSurfaceVIEw,而不是两次调用setContentVIEw().以下是如何完成此 *** 作的示例:
<?xml version="1.0" enCoding="UTF-8"?><FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent> <your.application.package.ClearGLSurfaceVIEw androID:layout_wIDth="match_parent" androID:layout_wIDth="match_parent"/> <!--put the rest of your layout here, i.e the contents of the original R.layout.main_pixIE--></FrameLayout>
然后,您可以像往常一样在onCreate()中加载此布局(main_pixIE_new指的是上述xml,我只是给了该名称以使内容尽可能清晰):
@OverrIDepublic voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main_pixIE_new); }
总结 以上是内存溢出为你收集整理的android-在活动中使用GlSurfaceview全部内容,希望文章能够帮你解决android-在活动中使用GlSurfaceview所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)