Tuesday, October 5, 2021

Splash Screen in Android

 

àSplash Screen



new Thread()
{
   
@Override
   
public void run() {
       
super.run();
       
try {
            Thread.sleep(
1500);
            Intent intent =
new Intent(Splash.this,MainActivity.class);
            startActivity(intent);
            Splash.
super.finish();
           
        }
catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}.start();

No comments:

Post a Comment

Activity Navigation One Activity to another Activity

Main Activity :-   <? xml version ="1.0" encoding ="utf-8" ?> < RelativeLayout xmlns: android ="http://sch...