本文整理汇总了Java中com.google.android.gms.ads.AdView.setBackgroundColor方法的典型用法代码示例。如果您正苦于以下问题:Java AdView.setBackgroundColor方法的具体用法?Java AdView.setBackgroundColor怎么用?Java AdView.setBackgroundColor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.android.gms.ads.AdView
的用法示例。
在下文中一共展示了AdView.setBackgroundColor方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createAdView
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
private AdView createAdView() {
mAdView = new AdView(this);
mAdView.setAdSize(AdSize.LARGE_BANNER);
// setup "testing" banner type
boolean isStoreBuild = BuildConfig.FLAVOR.equals("playstore") && BuildConfig.BUILD_TYPE.equals("release");
String adUnitId = isStoreBuild ? AD_UNIT_ID : "ca-app-pub-3940256099942544/6300978111";
mAdView.setAdUnitId(adUnitId);
mAdView.setId(View.generateViewId()); // this is an arbitrary id, allows for relative positioning in createGameView()
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);
params.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
mAdView.setLayoutParams(params);
mAdView.setBackgroundColor(Color.BLACK);
return mAdView;
}
示例2: initAdvertise
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
private void initAdvertise() {
AdView mAdView = new AdView(this);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
mAdView.setAdUnitId("ca-app-pub-3406938862137540/3927782716");
mAdView.setBackgroundColor(Color.BLACK);
AdRequest adRequest = new AdRequest.Builder().build();
double dppxl = (1 * (Resources.getSystem().getDisplayMetrics().densityDpi / 160f));
int v = this.getResources().getDisplayMetrics().heightPixels;
RelativeLayout layout = (RelativeLayout) findViewById(R.id.act_main_baseLayout);
layout.addView(mAdView, params);
if(v/dppxl > 720)
mAdView.setAdSize(AdSize.BANNER);
else
mAdView.setAdSize(AdSize.SMART_BANNER);
mAdView.loadAd(adRequest);
}
示例3: createAdView
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
private void createAdView() {
adView = new AdView(this);
adView.setAdSize(AdSize.SMART_BANNER);
adView.setAdUnitId(AD_UNIT_ID);
adView.setId(R.id.adsMobId); // this is an arbitrary id, allows for relative positioning in createGameView()
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
params.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
adView.setLayoutParams(params);
adView.setBackgroundColor(Color.BLACK);
}
示例4: setupAds
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
public void setupAds() {
adView = new AdView(this);
adView.setVisibility(View.VISIBLE);
adView.setBackgroundColor(0xff000000); //d7d7d7
adView.setAdUnitId(AD_UNIT_ID_BANNER);
adView.setAdSize(AdSize.SMART_BANNER);
}
示例5: createAdView
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
private AdView createAdView() {
adView = new AdView(this);
adView.setAdSize(AdSize.SMART_BANNER);
adView.setAdUnitId(AD_UNIT_ID);
adView.setId(12345); // this is an arbitrary id, allows for relative positioning in createGameView()
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);
params.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
adView.setLayoutParams(params);
adView.setBackgroundColor(Color.BLACK);
return adView;
}
示例6: createAdView
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
private AdView createAdView() {
AdView adView = new AdView(this);
adView.setAdSize(AdSize.SMART_BANNER);
adView.setAdUnitId(getString(R.string.ad_banner1));
adView.setId(12345);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);
params.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
adView.setLayoutParams(params);
adView.setBackgroundColor(Color.BLACK);
return adView;
}
示例7: createAdView
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
private AdView createAdView() {
adView = new AdView(this);
adView.setAdSize(AdSize.SMART_BANNER);
adView.setAdUnitId(SMALL_CODE);
adView.setId(12345); // this is an arbitrary id, allows for relative positioning in createGameView()
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
params.addRule(RelativeLayout.CENTER_HORIZONTAL);
layout.setLayoutParams(params);
adView.setLayoutParams(params);
adView.setBackgroundColor(Color.TRANSPARENT);
return adView;
}
示例8: onCreate
import com.google.android.gms.ads.AdView; //导入方法依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String mode = null;
if(getIntent().getExtras() != null)
mode = getIntent().getExtras().getString("mode");
if (Build.VERSION.SDK_INT < 16)
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
gameHelper = new GameHelper(this, GameHelper.CLIENT_GAMES | GameHelper.CLIENT_SNAPSHOT);
gameHelper.setup(this);
helper = new BackupAgentHelper();
//gameHelper.setConnectOnStart(true);
final AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
config.useAccelerometer = true;
config.useWakelock = true;
config.useImmersiveMode = false;
config.useGyroscope = true;
//initialize(new TDGalaxy(this, null, this), config);
View view = initializeForView(new TDGalaxy(mode,this, null, this, this), config);
RelativeLayout layout = new RelativeLayout(this);
MobileAds.initialize(this, Constants.ADSENSE_ID);
banner = new AdView(this);
banner.setAdSize(AdSize.SMART_BANNER);
banner.setAdUnitId(Constants.AD_BANNER);
banner.setBackgroundColor(Color.BLACK);
rewardVideo = MobileAds.getRewardedVideoAdInstance(this);
rewardVideo.setRewardedVideoAdListener(this);
rewardVideo.loadAd(Constants.AD_VIDEO, new AdRequest.Builder().build());
RelativeLayout.LayoutParams adParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
adParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
adParams.addRule(RelativeLayout.CENTER_IN_PARENT);
layout.addView(view);
layout.addView(banner, adParams);
setContentView(layout);
banner.setVisibility(View.VISIBLE);
}