次のコード ( 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 コードに作成されたビューのサイズを変更できるかどうかを知りたいです。(onCreate()
またはでonReceiveAd()
) 広告のサイズを調整します。
たとえばCenterCropのLayoutParam、またはビューの単純なサイズ変更!