1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
|
public class GameMainActivity extends Activity {
public class AdConstant { public static final String SPLASH_ID = ""; public static final String INTERSTITIAL_ID = ""; public static final String BANNER_ID = ""; public static final String REWARDVIDEO_ID = ""; public static final String FULLVIDEO_ID = ""; public static final String FEED_ID = ""; public static final String INFEED_ID = ""; }
private static final String TAG = GameMainActivity.class.getSimpleName(); public static GameMainActivity mGameMainActivity;
private ECAd bannerAd; private boolean mBannerIsShow;
private ECAd interstitialAd;
private ECAd rewardVideoAd; private static long mRewardVideoTime = 0;
private ECAd fullVideoAd; private static long mFullVideoTime = 0;
private ECAd feedAd; private boolean mFeedIsShow;
private ECAd infeedAd; private boolean mInfeedIsShow;
@Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState);
mGameMainActivity = this;
initAd();
}
public void initAd() { if (bannerAd == null) { bannerAd = new ECAd(this, new IECAdListener() { @Override public void onAdShow() { Log.i(TAG, "banner onAdShow"); }
@Override public void onAdFailed(ECAdError error) { Log.i(TAG, "banner onAdFailed: " + error.toString()); }
@Override public void onAdReady() { Log.i(TAG, "banner onAdReady"); setBannerShow(mBannerIsShow); }
@Override public void onAdClick() { Log.i(TAG, "banner onAdClick"); }
@Override public void onAdDismissed() { Log.i(TAG, "banner onAdDismissed"); }
@Override public void onAdReward() { Log.i(TAG, "banner onAdReward"); } }, ECAdType.BANNER); }
if (interstitialAd == null) { interstitialAd = new ECAd(this, new IECAdListener() { @Override public void onAdShow() { Log.i(TAG, "interstitial onAdShow"); }
@Override public void onAdFailed(ECAdError error) { Log.i(TAG, "interstitial onAdFailed: " + error.toString()); }
@Override public void onAdReady() { Log.i(TAG, "interstitial onAdReady"); }
@Override public void onAdClick() { Log.i(TAG, "interstitial onAdClick"); }
@Override public void onAdDismissed() { Log.i(TAG, "interstitial onAdDismissed"); }
@Override public void onAdReward() { Log.i(TAG, "interstitial onAdReward"); } }, ECAdType.INTERSTITIAL); }
if (rewardVideoAd == null) { rewardVideoAd = new ECAd(this, new IECAdListener() { @Override public void onAdShow() { Log.i(TAG, "rewardVideo onAdShow"); }
@Override public void onAdFailed(ECAdError error) { Log.i(TAG, "rewardVideo onAdFailed: " + error.toString()); }
@Override public void onAdReady() { Log.i(TAG, "rewardVideo onAdReady"); }
@Override public void onAdClick() { Log.i(TAG, "rewardVideo onAdClick"); }
@Override public void onAdDismissed() { Log.i(TAG, "rewardVideo onAdDismissed");
if (null != rewardVideoAd) { rewardVideoAd.loadAd(AdConstant.REWARDVIDEO_ID); }
}
@Override public void onAdReward() { Log.i(TAG, "rewardVideo onAdReward"); } }, ECAdType.REWARDVIDEO); }
if (fullVideoAd == null) { fullVideoAd = new ECAd(this, new IECAdListener() { @Override public void onAdShow() { Log.i(TAG, "fullVideo onAdShow"); }
@Override public void onAdFailed(ECAdError error) { Log.i(TAG, "fullVideo onAdFailed: " + error.toString()); }
@Override public void onAdReady() { Log.i(TAG, "fullVideo onAdReady"); }
@Override public void onAdClick() { Log.i(TAG, "fullVideo onAdClick"); }
@Override public void onAdDismissed() { Log.i(TAG, "fullVideo onAdDismissed");
if (null != fullVideoAd) { fullVideoAd.loadAd(AdConstant.FULLVIDEO_ID); }
}
@Override public void onAdReward() { Log.i(TAG, "rewardVideo onAdReward"); } }, ECAdType.FULLVIDEO); }
if (feedAd == null) { feedAd = new ECAd(this, new IECAdListener() { @Override public void onAdShow() { Log.i(TAG, "feed onAdShow"); }
@Override public void onAdFailed(ECAdError error) { Log.i(TAG, "feed onAdFailed: " + error.toString());
}
@Override public void onAdReady() { Log.i(TAG, "feed onAdReady");
setFeedShow(mFeedIsShow); }
@Override public void onAdClick() { Log.i(TAG, "feed onAdClick"); }
@Override public void onAdDismissed() { Log.i(TAG, "feed onAdDismissed"); }
@Override public void onAdReward() { Log.i(TAG, "feed onAdReward"); } }, ECAdType.FEED); }
if (infeedAd == null) { infeedAd = new ECAd(this, new IECAdListener() { @Override public void onAdShow() { Log.i(TAG, "infeed onAdShow"); }
@Override public void onAdFailed(ECAdError error) { Log.i(TAG, "infeed onAdFailed: " + error.toString()); }
@Override public void onAdReady() { Log.i(TAG, "infeed onAdReady"); setInfeedShow(mInfeedIsShow); }
@Override public void onAdClick() { Log.i(TAG, "infeed onAdClick"); }
@Override public void onAdDismissed() { Log.i(TAG, "infeed onAdDismissed"); }
@Override public void onAdReward() { Log.i(TAG, "infeed onAdReward"); } }, ECAdType.INFEED); }
}
public static void showFeedAd() { Log.i(TAG, "展示feed广告---->"); if (null != mGameMainActivity.feedAd) { mGameMainActivity.feedAd.showAd(AdConstant.FEED_ID); } }
public static void setFeedShow(boolean isShow) { mGameMainActivity.mFeedIsShow = isShow; if (null != mGameMainActivity.feedAd) { Log.i(TAG, "设置feed广告Visibility:" + isShow); mGameMainActivity.feedAd.setVisibility(isShow); } }
public static void loadFullVideoAd() { if (null != mGameMainActivity.fullVideoAd) { Log.i(TAG, "加载全屏视频广告---->"); mGameMainActivity.fullVideoAd.loadAd(AdConstant.FULLVIDEO_ID); } }
public static void showFullVideoAd() { if (null != mGameMainActivity.fullVideoAd) { if (mGameMainActivity.fullVideoAd.isReady()) { Log.i(TAG, "展示全屏视频广告..."); mGameMainActivity.fullVideoAd.showAd(AdConstant.FULLVIDEO_ID); } else { Log.i(TAG, "full video ad is not ready");
long curTime = System.currentTimeMillis(); boolean isLoad = (0 == mFullVideoTime || curTime - mFullVideoTime > 3000); if (isLoad) { mFullVideoTime = curTime; mGameMainActivity.fullVideoAd.loadAd(AdConstant.FULLVIDEO_ID); } } } }
public static void loadRewardVideoAd() { if (null != mGameMainActivity.rewardVideoAd) { Log.i(TAG, "加载激励视频广告---->"); mGameMainActivity.rewardVideoAd.loadAd(AdConstant.REWARDVIDEO_ID); } }
public static void showRewardVideoAd() { if (null != mGameMainActivity.rewardVideoAd) { if (mGameMainActivity.rewardVideoAd.isReady()) { Log.i(TAG, "展示激励视频广告..."); mGameMainActivity.rewardVideoAd.showAd(AdConstant.REWARDVIDEO_ID); } else { Log.i(TAG, "reward video ad is not ready");
long curTime = System.currentTimeMillis(); boolean isLoad = (0 == mRewardVideoTime || curTime - mRewardVideoTime > 3000); if (isLoad) { mRewardVideoTime = curTime; mGameMainActivity.rewardVideoAd.loadAd(AdConstant.REWARDVIDEO_ID); } } } }
public static void showInterstitialAd() { if (null != mGameMainActivity.interstitialAd) { Log.i(TAG, "展示插屏---->"); mGameMainActivity.interstitialAd.showAd(AdConstant.INTERSTITIAL_ID); } }
public static void showBanner() { if (null != mGameMainActivity.bannerAd) { Log.i(TAG, "展示banner---->"); mGameMainActivity.bannerAd.showAd(AdConstant.BANNER_ID); } }
public static void setBannerShow(boolean isShow) { mGameMainActivity.mBannerIsShow = isShow; if (null != mGameMainActivity.bannerAd) { Log.i(TAG, "设置banner广告Visibility:" + isShow); mGameMainActivity.bannerAd.setVisibility(isShow); } }
public static void showInfeedAd() { if (null != mGameMainActivity.infeedAd) { Log.i(TAG, "展示贴片广告---->"); mGameMainActivity.infeedAd.showAd(AdConstant.INFEED_ID); } }
public static void setInfeedShow(boolean isShow) { mGameMainActivity.mInfeedIsShow = isShow; if (null != mGameMainActivity.infeedAd) { Log.i(TAG, "设置infeed广告Visibility:" + isShow); mGameMainActivity.infeedAd.setVisibility(isShow); } }
@Override protected void onStart() { super.onStart(); if (bannerAd != null) { bannerAd.onStart(); } if (interstitialAd != null) { interstitialAd.onStart(); } if (rewardVideoAd != null) { rewardVideoAd.onStart(); } if (fullVideoAd != null) { fullVideoAd.onStart(); } if (feedAd != null) { feedAd.onStart(); } if (infeedAd != null) { infeedAd.onStart(); } }
@Override protected void onRestart() { super.onRestart(); if (bannerAd != null) { bannerAd.onRestart(); } if (interstitialAd != null) { interstitialAd.onRestart(); } if (rewardVideoAd != null) { rewardVideoAd.onRestart(); } if (fullVideoAd != null) { fullVideoAd.onRestart(); } if (feedAd != null) { feedAd.onRestart(); } if (infeedAd != null) { infeedAd.onRestart(); } }
@Override protected void onResume() { super.onResume(); if (bannerAd != null) { bannerAd.onResume(); } if (interstitialAd != null) { interstitialAd.onResume(); } if (rewardVideoAd != null) { rewardVideoAd.onResume(); } if (fullVideoAd != null) { fullVideoAd.onResume(); } if (feedAd != null) { feedAd.onResume(); } if (infeedAd != null) { infeedAd.onResume(); } }
@Override protected void onPause() { super.onPause(); if (bannerAd != null) { bannerAd.onPause(); } if (interstitialAd != null) { interstitialAd.onPause(); } if (rewardVideoAd != null) { rewardVideoAd.onPause(); } if (fullVideoAd != null) { fullVideoAd.onPause(); } if (feedAd != null) { feedAd.onPause(); } if (infeedAd != null) { infeedAd.onPause(); } }
@Override protected void onStop() { super.onStop(); if (bannerAd != null) { bannerAd.onStop(); } if (interstitialAd != null) { interstitialAd.onStop(); } if (rewardVideoAd != null) { rewardVideoAd.onStop(); } if (fullVideoAd != null) { fullVideoAd.onStop(); } if (feedAd != null) { feedAd.onStop(); } if (infeedAd != null) { infeedAd.onStop(); } }
@Override protected void onDestroy() { if (bannerAd != null) { bannerAd.onDestroy(); } if (interstitialAd != null) { interstitialAd.onDestroy(); } if (rewardVideoAd != null) { rewardVideoAd.onDestroy(); } if (fullVideoAd != null) { fullVideoAd.onDestroy(); } if (feedAd != null) { feedAd.onDestroy(); } if (infeedAd != null) { infeedAd.onDestroy(); } super.onDestroy();
}
@Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); if (bannerAd != null) { bannerAd.onNewIntent(intent); } if (interstitialAd != null) { interstitialAd.onNewIntent(intent); } if (rewardVideoAd != null) { rewardVideoAd.onNewIntent(intent); } if (fullVideoAd != null) { fullVideoAd.onNewIntent(intent); } if (feedAd != null) { feedAd.onNewIntent(intent); } if (infeedAd != null) { infeedAd.onNewIntent(intent); } }
@Override public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); if (bannerAd != null) { bannerAd.onSaveInstanceState(outState); } if (interstitialAd != null) { interstitialAd.onSaveInstanceState(outState); } if (rewardVideoAd != null) { rewardVideoAd.onSaveInstanceState(outState); } if (fullVideoAd != null) { fullVideoAd.onSaveInstanceState(outState); } if (feedAd != null) { feedAd.onSaveInstanceState(outState); } if (infeedAd != null) { infeedAd.onSaveInstanceState(outState); } }
@Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); if (bannerAd != null) { bannerAd.onConfigurationChanged(newConfig); } if (interstitialAd != null) { interstitialAd.onConfigurationChanged(newConfig); } if (rewardVideoAd != null) { rewardVideoAd.onConfigurationChanged(newConfig); } if (fullVideoAd != null) { fullVideoAd.onConfigurationChanged(newConfig); } if (feedAd != null) { feedAd.onConfigurationChanged(newConfig); } if (infeedAd != null) { infeedAd.onConfigurationChanged(newConfig); } }
}
|