这是示例代码:
FrameLayout Root = new FrameLayout(this);
this.addContentView(Root, LayoutParam0);
setContentView(this);
GLSurfaceView gls = new GLSurfaceView(this);
Root.addView(gls,0, LayoutParam1);
View view = new UnityPlayer(this);
Root.addView(view,1, LayoutParam2);
我想view
放在顶部和gls
底部,但是一些 android 设备会gls
放在顶部。我该如何解决?
psbringToFront()
一些 android 设备会让它进入底部。