gpt4 book ai didi

android - DoubleClick - Interstitial advertising sizing/cropping/center placing -> 不可能?

转载 作者:太空狗 更新时间:2023-10-29 13:30:14 26 4
gpt4 key购买 nike

遵循此代码 ( https://developers.google.com/mobile-ads-sdk/docs/admob/advanced ):

import com.google.ads.*;

public class BannerExample extends Activity implements AdListener {

private InterstitialAd interstitial;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

// Create the interstitial
interstitial = new InterstitialAd(this, MY_INTERSTITIAL_UNIT_ID);

// Create ad request
AdRequest adRequest = new AdRequest();

// Begin loading your interstitial
interstitial.loadAd(adRequest);

// Set Ad Listener to use the callbacks below
interstitial.setAdListener(this);
}

@Override
public void onReceiveAd(Ad ad) {
Log.d("OK", "Received ad");
if (ad == interstitial) {
interstitial.show();
}
}
}

我的图片(我的广告)比我的手机屏幕小。我想知道是否可以调整在 java 代码中创建的 View 的大小。 (在 onCreate()onReceiveAd() 中)用于调整广告的大小。

LayoutParam,例如在 CenterCrop 中,或者简单地调整 View 大小!

最佳答案

如果您想从 DFP 向手机转换插页式广告,您可以在 DFP 中设置图片,并将尺寸替换为 320x480。然后可以转换该广告素材,并且可以根据需要缩小尺寸。

或者,您可能正在寻找横幅而不是占据整个屏幕的插页式叠加层。在这种情况下,您可以 specify a custom size对于您的 AdView,该尺寸应与您在 DFP 中设置的尺寸相匹配。

关于android - DoubleClick - Interstitial advertising sizing/cropping/center placing -> 不可能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16419729/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com