有没有办法在不挤压GLView的情况下添加广告?

时间:2014-08-24 12:39:07

标签: java android adview

我正在为自己编写小游戏,而且我正在玩游戏中的谷歌广告。我能够在游戏中看到它们,但正如标题所示,我必须安排我的布局,在AdView下方订购GlView,这会导致GLView(和我的游戏)受到挤压。

是否有其他方法可以在不调整GLView大小的情况下实施广告?

这是我的布局XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#22baee">

    <com.google.ads.AdView android:id="@+id/adView"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         ads:adUnitId="ca-app-pub-4261152006862799/7796500146"
         ads:adSize="BANNER"
         android:layout_centerHorizontal="true"
         ads:loadAdOnCreate="true" />

    <android.opengl.GLSurfaceView
        android:id="@+id/glview"
        android:layout_below="@+id/adView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="top|left" />

</RelativeLayout>

0 个答案:

没有答案