Start App Splash Ad (start.io) on Android
Start App Splash Ad (start.io) on Android
Splash Ads are full-screen ads that are shown when we open our app. Start App Splash ads are enabled by default, you have to disable it if you don't want to show these ads.
![]() |
Start App Splash Ad on Android |
You can customize your splash screen with Start App Splash Ad and earn revenue from it.
Just load the Splash ads in your first starting java activity.
Java activity
public class StartAppSplash extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_start_app_splash);
StartAppSDK.init(this,"Your App Id",false);
StartAppSDK.setTestAdsEnabled(true);
/** StartAppAd.disableSplash(); // to diable splash ads **/
StartAppAd.showSplash(this, savedInstanceState,
new SplashConfig()
.setTheme(SplashConfig.Theme.OCEAN)
.setAppName("My Android App")
.setLogo(R.drawable.check_box_tick_20) // recommended 360*360 logo
.setOrientation(SplashConfig.Orientation.PORTRAIT)
);
StartAppAd startAppAd = new StartAppAd(this);
startAppAd.loadAd();
startAppAd.showAd();
}
}
Follow us for more posts like this,
Subscribe to Harpreet studio on Youtube
Like Harpreet Studio on Facebook
Follow me on Instagram, Harpreet Studio on Instagram,
Subscribe to Harpreet studio on Youtube
Like Harpreet Studio on Facebook
Follow me on Instagram, Harpreet Studio on Instagram,
Install our Android app from the Google Play store
No comments