AdMob - dfpadview - 拉伸/缩小以填充Android手机屏幕?

时间:2014-03-03 18:36:45

标签: android admob

在Android设备上显示宽度未填满屏幕的问题。

以下是我们xml的一部分:

<FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" >

       <LinearLayout android:id="@+id/adViewContainer" android:layout_width="fill_parent"
                       android:layout_height="wrap_content"
                       android:orientation="horizontal"
                       android:layout_gravity="bottom|right"
                       android:layout_marginRight="14dp"
                       android:layout_marginBottom="1dp"
                       android:background="#00000000" />
    </FrameLayout>

这是我们的横幅代码,它是320 x 60(它是html内容)。由于手机尺寸不同,有时它会被切断,有时它太小了......你们有什么建议可以缩小/拉伸它以填充所有空间高度= 60,宽度=无论屏幕是什么?

AdSize customAdSize = new AdSize(320, 60);

adView = new DfpAdView(this, customAdSize, AdURL);
adView.setAppEventListener(this);

AdRequest request = new AdRequest();
LinearLayout adContainer = (LinearLayout)findViewById(R.id.adViewContainer);

adContainer.addView(adView);
adView.setAdListener(this);
adView.loadAd(request);

0 个答案:

没有答案