剪裁的Admob横幅

时间:2015-04-15 08:52:56

标签: android admob surfaceview

我在游戏中使用SurfaceView。我最后使用以下代码添加了Admob横幅:

    RelativeLayout layout = new RelativeLayout(this);
    layout.addView(renderView);

    adView = new AdView(this);
    adView.setAdUnitId("ca-app-pub-xxxxxxxxxxxxxxxx/xxxxxxxxxx");
    adView.setAdSize(AdSize.SMART_BANNER);

    layout.addView(adView);
    setContentView(layout);        

    adRequest = new AdRequest.Builder().build();
    adView.loadAd(adRequest);

但我的横幅似乎被剪裁,如下图所示:

enter image description here

稍后,如果我按下主页按钮(或横幅上的标签)并按回按钮返回我的游戏,它会正常显示,因为可以看到下图:

enter image description here

有什么问题?

1 个答案:

答案 0 :(得分:0)

我发现以下链接包含相同的问题及其解决方案:

Android - Admob - Loading ad then changing visibility causes problems