You are on page 1of 1

Thread splashThread = new Thread() {

public void run() {


try {
int waited = 0;
while (waited < 2000) {
sleep(100);
waited += 100;
}
} catch (InterruptedException e) {
// do nothing
} finally {

Intent intent = new Intent(Splash.this, LoginActivity.class);


startActivity(intent);

}
}
};
splashThread.start();

You might also like