TimerTask timerTask;
Timer timer;
timerTask = new TimerTask() {
@Override
public void run() {
startActivity(new Intent("com.package.SECONDACTIVITY"));
// change the Intent above to whatever your second activity is.
finish();
}
};
timer = new Timer();
timer.schedule(timerTask, 1 * 1000);
// change the 1 above to however many seconds you wanna display the splash