如果我在布局中设置android:padding,则无法显示最新的Admob广告,为什么?

时间:2014-08-20 09:05:23

标签: android admob

如果我使用案例A的布局,则无法显示Admob广告。

如果我使用案例B的布局,Admob广告可以正确显示!我无法理解为什么?

此外,如果我设置android:background,例如android:background =" @ drawable / border_ui",即使border_ui.xml为空,也无法显示Admob广告。

您可以在https://dl.dropboxusercontent.com/u/209352/aa.zip

处测试样本

案例A

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.aa.MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <com.google.android.gms.ads.AdView  
        xmlns:ads="http://schemas.android.com/apk/res-auto"       
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ads:adSize="SMART_BANNER"
        ads:adUnitId="YouID" />

</RelativeLayout>

案例B

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"   
    tools:context="com.example.aa.MainActivity" >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <com.google.android.gms.ads.AdView  
        xmlns:ads="http://schemas.android.com/apk/res-auto"       
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ads:adSize="SMART_BANNER"
        ads:adUnitId="YouID" />

</RelativeLayout>

dimens.xml

 <resources>
    <!-- Default screen margins, per the Android Design guidelines. -->
    <dimen name="activity_horizontal_margin">16dp</dimen>
    <dimen name="activity_vertical_margin">16dp</dimen>
</resources>

MainActivity Class

package com.example.aa;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdSize;
import com.google.android.gms.ads.AdView;
public class MainActivity extends ActionBarActivity {

    private AdView adView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

       adView = (AdView)this.findViewById(R.id.adView);
            AdRequest adRequest = new AdRequest.Builder()
                         .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
                         .build();
            adView.loadAd(adRequest);
    }

      @Override
      public void onResume() {
        super.onResume();
        if (adView != null) {
          adView.resume();
        }
      }

      @Override
      public void onPause() {
        if (adView != null) {
          adView.pause();
        }
        super.onPause();
      }

      @Override
      public void onDestroy() {
        if (adView != null) {
          adView.destroy();
        }
        super.onDestroy();
      }


}

2 个答案:

答案 0 :(得分:1)

很简单,例如A的填充意味着没有足够的空间来展示广告。如果您查看日志,您将看到相应的消息。

SmartBanner只是意味着选择适合设备大小和分辨率的广告,并不意味着它选择适合任意屏幕布局的广告。

答案 1 :(得分:0)

最新的admob sdk集成在googleplayservices中,后来开始播放广告 将其添加到清单文件

 <meta-data android:name="com.google.android.gms.version" android:value="5089000"/>