1

我已经发布了一个应用程序,但问题在于 admob 推送布局,假设您一打开活动就开始绘制手势,然后在几秒钟后弹出一个广告,它推送内容并因此破坏了你画的手势。

我怎样才能阻止这种情况发生,我希望广告加载但不推动其下方的内容。

我已经包含了我的创建手势布局的 XML

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/gridbg"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"

        android:orientation="horizontal">

   <com.google.ads.AdView
        xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
         android:id="@+id/adView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        ads:adUnitId=""
        ads:adSize="BANNER"
        ads:loadAdOnCreate="true"
         android:gravity="center_horizontal"/>

    </LinearLayout>

    <android.gesture.GestureOverlayView
        android:id="@+id/gestures_overlay"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1.0"
        android:gestureColor="#00FFFF"
        android:gestureStrokeType="multiple" />

    <LinearLayout
        style="@android:style/ButtonBar"

        android:layout_width="fill_parent"
        android:layout_height="wrap_content"

        android:orientation="horizontal">

        <Button
            android:id="@+id/done"

            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"

            android:enabled="false"

            android:onClick="addGesture"
            android:text="@string/button_done" 

            style="@style/BlueButtonText"
            android:background="@drawable/blue_button"
            />

        <Button
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"

            android:onClick="cancelGesture"
            android:text="@string/button_discard" 

            style="@style/BlueButtonText"
            android:background="@drawable/blue_button"
            />

    </LinearLayout>

</LinearLayout>
4

2 回答 2

1

它正在推动您的视图,因为您将高度设置为 wrap_content。首次加载视图时,没有广告可显示,因此高度为零。尝试设置容器视图的高度,以便视图始终占据广告所需的空间:

<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:orientation="horizontal">

   <com.google.ads.AdView
        xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
         android:id="@+id/adView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        ads:adUnitId=""
        ads:adSize="BANNER"
        ads:loadAdOnCreate="true"
         android:gravity="center_horizontal"/>

</LinearLayout>
于 2012-08-07T20:35:46.867 回答
0

如果你没有得到广告,你最终会得到空白空间,这看起来很奇怪,并且在小屏幕上浪费了宝贵的空间。

不仅如此,据我所知,广告应该在不同的屏幕上有不同的尺寸。

我认为你应该考虑做接下来的事情:

  1. 将广告放在布局顶部

  2. 仅将其放在用户不会看到的不重要的地方。甚至可能在初始屏幕、过渡屏幕和设置页面上

  3. 当广告出现时使用动画,当它结束时,也改变布局。

于 2012-08-07T21:33:15.283 回答