I currently am working on an android app. Just started and I was able to implement my splash screen. However, I don\'t like the transition between that and the main activity. I
You could use two .xml files to fade in a new Activity and fade out the current Activity.
fade_in.xml
fade_out.xml
Use it in code like that: (Inside your Activity)
Intent intent = new Intent();
intent.setClass(sPlashScreen, MainActivity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in, R.anim.fade_out);
The above code will fade out the currently active Activity and fade in the newly started Activity.