About us Contact us privacy policy

Thursday, March 12, 2020

INTERSTITIAL AD by KIMJOH

InterstitialAd interstitialAdMob; //SHOW AD loadInterstitialAdMob(); //METHOD private void loadInterstitialAdMob() { interstitialAdMob = new InterstitialAd(this); interstitialAdMob.setAdUnitId(Constants.ADS_ADMOB_FULLSCREEN_ID); AdRequest adRequest = new AdRequest.Builder().build(); interstitialAdMob.loadAd(adRequest); interstitialAdMob.setAdListener(new AdListener() { @Override public void onAdLoaded() { interstitialAdMob.show(); ...
Read More »

Sunday, April 7, 2019

SHOW INTERSTITIAL ON START && AT INTERVAL

if (mInterstitialAd.isLoaded()) { if (check()) { mInterstitialAd.show(); mInterstitialAd.setAdListener(new AdListener() { @Override public void onAdClosed() { super.onAdClosed(); requestNewInterstitial(); ++++++++++++++++++++++ if (mInterstitialAd.isLoaded()) { mInterstitialAd.show(); mInterstitialAd.setAdListener(new AdListener() { @Override public void onAdClosed() { super.onAdClosed(); ...
Read More »

Friday, March 8, 2019

Material Home Page Design (Dashboard) in android studio

Material Home Page Design (Dashboard) in android studio https://awsrh.blogspot.com/2017/11/home-dashboard-design-in-android-studio.ht...
Read More »

Saturday, February 23, 2019

Navigation Drawer with Fragments Part 1 - MENU AND ACTIVITY THEME - Android Studio Tutorial

Navigation Drawer with Fragments Part 1 - MENU AND ACTIVITY THEME - Android Studio Tutori...
Read More »

Friday, February 22, 2019

CARDVIEW TUTORIAL

https://www.androidhive.info/2016/05/android-working-with-card-view-and-recycler-vi...
Read More »

Thursday, February 21, 2019

INTENTS ANDROID TUTORIAL

https://www.vogella.com/tutorials/AndroidIntent/article.html READ MORE Current responses are great but a more comprehensive answer is needed for beginners. There are 3 different ways to start a new activity in Android, and they all use the Intent class; Intent | Android Developers. Using the onClick attribute of the Button. (Beginner) Assigning an OnClickListener() via an anonymous class. (Intermediate) Activity wide interface method using the switch statement....
Read More »