我遇到的问题是我无法正确显示带有两个广告横幅的 GLSurfaceView。我想将它们放置在移动屏幕的顶部和底部以及 GLSurfaceView(主游戏窗口)上方。如何实现?以下是我拥有的当前布局 xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/adRelativeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray" >
<ad banner 1
android:id="@+id/admobView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
/>
<ad banner 2
android:id="@+id/mmediaView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
/>
<android.opengl.GLSurfaceView
android:id="@+id/gameWindow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</RelativeLayout>