Medstudio
118 subscribers
2 videos
1 file
4 links
Download Telegram
Channel created
This media is not supported in your browser
VIEW IN TELEGRAM
How to get your own API Key for news project
πŸ‘1πŸ”₯1
Media is too big
VIEW IN TELEGRAM
Best and easiest way to make real PROFESSIONAL splash screen
❀1
Splash Screen : ALL USED CODES


1 Add this code to styles.xml file :


<style name="AppTheme.medstudio">
    <item name="android:windowBackground">@drawable/splash_screen</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowActionBar">false</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowContentOverlay">@null</item>
</style>



--------------------------------------------------------------------------------------



2 Add this code in Drawable Files splash_screen.xml :



<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:opacity="opaque">

    <!--Background color of your Splash Screen-->
    <!--To change background color you R.color-->
    <item android:drawable="@android:color/white" />

    <item>
        <!--This logo is 144x144 px. If your image is larger, you should scale it to fit nicely-->
        <bitmap
            android:gravity="center"
            android:src="@drawable/app_logo" />
    </item>

</layer-list>



--------------------------------------------------------------------------------------



3 Add this on AndroidManifest your SplashActivity Theme :


AppTheme.medstudio


--------------------------------------------------------------------------------------


4 Use this code to go to your MainActivity or any other activity >>




Thread Thr = new Thread(){

public void run(){

try{

sleep(2000);
    
}
catch (Exception e){

         finish();

}

finally{

intt.setClass(getApplicationContext(), MainActivity.class);

startActivity(intt);
finish();

}
}


};

Thr.start();
πŸ‘3
Hello guys, Subscribe to my first YouTube channel, I will make a video about how to add GDPR message to your app.


https://www.youtube.com/channel/UCjLGKYrMdx2Fm8EE2DolZuQ
Medstudio pinned Β«Hello guys, Subscribe to my first YouTube channel, I will make a video about how to add GDPR message to your app. https://www.youtube.com/channel/UCjLGKYrMdx2Fm8EE2DolZuQΒ»
Used Library And All Codes.
πŸ€”2
Library & Codes.zip
107.9 KB
😁9❀6πŸ‘3🀩3πŸ₯°2πŸ‘2🀯2πŸ€”1😱1πŸŽ‰1πŸ™1
What you guys want for the next video?
Anonymous Poll
54%
Ringtone App
46%
Wallpapers App
πŸ₯°3πŸ€”1