How to make a splash Screen || Code

Timer Code:


How to make a splash Screen




new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent i =new Intent(getApplicationContext(),MainActivity2.class);
//or

startActivity(i);
finish();
}
},5000);

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.