本文整理汇总了Java中com.google.android.gms.ads.InterstitialAd类的典型用法代码示例。如果您正苦于以下问题:Java InterstitialAd类的具体用法?Java InterstitialAd怎么用?Java InterstitialAd使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
InterstitialAd类属于com.google.android.gms.ads包,在下文中一共展示了InterstitialAd类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onGotIt
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
public void onGotIt(View button) {
SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(this);
SharedPreferences.Editor prefEditor = settings.edit();
prefEditor.putBoolean("gotIt", true);
prefEditor.apply();
Intent i = new Intent(this, SettingsActivity.class);
startActivity(i);
//mInterstitialAd.show();
InterstitialAd ad1 = AdManager.getAd1();
if (ad1.isLoaded()) {
ad1.show();
}
//interventie 2
Log.d("ADS_REACH","Reached ad code");
finish();
//aici era interstitial initial
}
示例2: showFullScreenAdsIfRequired
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
public static void showFullScreenAdsIfRequired(final StateActivity activity) {
if (Premium.isPremiumUser(activity)) return;
final InterstitialAd interstitialAd = new InterstitialAd(activity.getApplicationContext());
interstitialAd.setAdUnitId(AdConstants.AdUnitId.AD_UNIT_ID_INTERSTITIAL);
AdRequest.Builder request = new AdRequest.Builder();
if (BuildConfig.DEBUG) {
request.addTestDevice(TEST_DEVICE_ID);
}
interstitialAd.loadAd(request.build());
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
super.onAdLoaded();
if (!activity.isFinishing() && activity.isActivityVisible()) {
interstitialAd.show();
}
}
});
}
示例3: onCreateView
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_cafeterias, container, false);
ButterKnife.bind(this, view);
mInterstitialAd = new InterstitialAd(getContext());
mInterstitialAd.setAdUnitId("ca-app-pub-3940256099942544/1033173712");
AdRequest adRequest = new AdRequest.Builder().build();
mInterstitialAd.loadAd(adRequest);
CustomListAdaptor customListAdaptor = new CustomListAdaptor(getContext(), Arrays.asList(getResources().getStringArray(R.array.cafeterias)));
lvCafeterias.setAdapter(customListAdaptor);
lvCafeterias.animate().setDuration(500);
return view;
}
示例4: createNewIntAd
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
private InterstitialAd createNewIntAd() {
InterstitialAd intAd = new InterstitialAd(context);
intAd.setAdUnitId(context.getString(R.string.tip_click_int_ad_id));
intAd.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
}
@Override
public void onAdFailedToLoad(int errorCode) {
}
@Override
public void onAdClosed() {
// Proceed to the next level.
//levelTwo();
}
});
return intAd;
}
示例5: onCreate
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
mInterstitialAd = new InterstitialAd(this);
// set the ad unit ID
mInterstitialAd.setAdUnitId(getString(R.string.interstitial_full_screen));
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice("DCAB007CDB3101E631F092966F546CC2")
.build();
// Load ads into Interstitial Ads
mInterstitialAd.loadAd(adRequest);
mInterstitialAd.setAdListener(new AdListener() {
public void onAdLoaded() {
showInterstitial();
}
});
}
示例6: setUpAds
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
private void setUpAds() {
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
interstitialAd = new InterstitialAd(getContext());
interstitialAd.setAdUnitId(interstitialAdUnitId);
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdFailedToLoad(int i) {
super.onAdFailedToLoad(i);
requestNewInterstitial();
}
@Override
public void onAdClosed() {
super.onAdClosed();
requestNewInterstitial();
}
@Override
public void onAdOpened() {
super.onAdOpened();
requestNewInterstitial();
}
});
requestNewInterstitial();
}
示例7: request
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
@Override
protected void request(Context context, Map<String, String> networkData) {
if (context == null || networkData == null) {
invokeLoadFail(PNException.ADAPTER_ILLEGAL_ARGUMENTS);
} else {
String unitId = networkData.get(AdMob.KEY_UNIT_ID);
if (TextUtils.isEmpty(unitId)) {
invokeLoadFail(PNException.ADAPTER_MISSING_DATA);
} else {
mInterstitialAd = new InterstitialAd(mContext);
mInterstitialAd.setAdUnitId(unitId);
mInterstitialAd.setAdListener(mAdListener);
mInterstitialAd.loadAd(AdMob.getAdRequest(context));
}
}
}
示例8: initADs
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
void initADs() {
if(enableADs) {
//https://firebase.google.com/docs/admob/android/quick-start
MobileAds.initialize(getApplicationContext(), getString(R.string.ad_app_id));
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
Log.d(LOG_TAG, "Ads initialized..");
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId(getString(R.string.interstitial_ad_unit_id));
mInterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
//requestNewInterstitial();
}
});
requestNewInterstitial();
}
}
示例9: onCreate
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mInterstitialAd = new InterstitialAd(getActivity());
mInterstitialAd.setAdUnitId("ca-app-pub-3940256099942544/1033173712");
mInterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
requestNewInterstitial();
openJokeActivity();
}
});
requestNewInterstitial();
}
示例10: showIntersitialAdOnNextLevel
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
boolean showIntersitialAdOnNextLevel(InterstitialAd intersitialAdOnNextLevel, int actualLevel) {
if (actualLevel % 2 == 0) {
if (intersitialAdOnNextLevel.isLoaded()) {
intersitialAdOnNextLevel.show();
return true;
} else {
return false;
}
}else{
return false;
}
}
示例11: onCreateView
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
@Override
public View onCreateView(final LayoutInflater inflater, final ViewGroup container, final Bundle savedInstanceState) {
super.onCreateView(inflater, container, savedInstanceState);
final View rootView = inflater.inflate(R.layout.fragment_main, container, false);
this.mButtonStartInterstitial = (AppCompatButton) rootView.findViewById(R.id.buttonStartInterstitial);
this.mButtonStartInterstitial.setOnClickListener(this.mOnClickListener);
this.mAdView = (AdView) rootView.findViewById(R.id.adView);
this.mAdView.setAdListener(this.mAdListener);
this.mAdView.loadAd(new AdRequest.Builder().build());
this.mInterstitialAd = new InterstitialAd(this.getActivity());
this.mInterstitialAd.setAdUnitId(this.getString(R.string.app_ad));
this.mInterstitialAd.setAdListener(this.mAdListener);
this.mInterstitialAd.loadAd(new AdRequest.Builder().build());
return rootView;
}
示例12: setUpInterstitialAd
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
/**
* Sets up the interstitial ad object.
*/
private void setUpInterstitialAd() throws Exception {
if (!(advertable instanceof Activity)) {
throw new Exception("Only Activity class can implement HackChatInterstitialAdvertable.");
}
interstitialAd = new InterstitialAd((Activity) advertable);
interstitialAd.setAdUnitId(adUnitId);
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
advertable.onInterstitialAdClosed();
}
});
requestInterstitialAd();
}
示例13: initAdmob
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
/**
* Ads for the app.
*/
private void initAdmob() {
int curTime = App.Instance.getAdsShownTimes();
int adsTimes = 7;
if (curTime % adsTimes == 0) {
// Create an ad.
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId(getString(R.string.interstitial_ad_unit_id));
// Create ad request.
AdRequest adRequest = new AdRequest.Builder().build();
// Begin loading your interstitial.
mInterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
super.onAdLoaded();
displayInterstitial();
}
});
mInterstitialAd.loadAd(adRequest);
}
curTime++;
App.Instance.setAdsShownTimes(curTime);
}
示例14: onCreate
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fragment_location);
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId(getResources().getString(R.string.interstitial_ad));
mInterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
finish();
}
});
AdRequest adRequest = new AdRequest.Builder().build();
mInterstitialAd.loadAd(adRequest);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
开发者ID:akashandroid90,项目名称:GooglePlayServiceLocationSupport,代码行数:19,代码来源:FragmentLocationActivity.java
示例15: handleInterstitialAd
import com.google.android.gms.ads.InterstitialAd; //导入依赖的package包/类
private void handleInterstitialAd() {
String adId = Preferences.getInstance(this).getAdmobInterstitialId();
if (adId == null || adId.length() == 0)
return;
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId(adId);
// Create ad request.
AdRequest adRequest = new AdRequest.Builder().build();
// Begin loading your interstitial.
interstitial.loadAd(adRequest);
interstitial.setAdListener(new AdListener() {
public void onAdLoaded() {
if (interstitial.isLoaded()) {
interstitial.show();
}
}
});
}