サンプルコードは次のとおりです。
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);
上と下につけたいのですが、一部のAndroidデバイスはview
上につけます。どうすれば修正できますか?gls
gls
psbringToFront()
一部のAndroidデバイスでは、下に移動できます。