滑动菜单时,将广告视图固定到位

时间:2014-01-16 16:55:06

标签: android slidingmenu adview jfeinstein

我在我的Android应用程序中集成了admob广告。我正在使用jfeinstein的滑动菜单,所以当我滑动它时,adview也会滑动它。无论滑动菜单状态如何,如何将其粘在屏幕上?

一些代码:

<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"
    android:layout_alignParentBottom="true"
    ads:adSize="BANNER"
    ads:adUnitId="ID"
    ads:loadAdOnCreate="true" />

adView = (AdView) findViewById(R.id.adview);
adView.loadAd(new AdRequest());

1 个答案:

答案 0 :(得分:0)

尝试将广告与广告的左侧和右侧对齐,而不是设置宽度以填充父级。 (它会像你想要的那样填充页面的底部,并通过滑动菜单阻止它滑动。)

我已经这样做了所以我知道它的工作原理是:)