Welcome page for android application

To do this you have to create a Splash Screen layout and associated activity. You have to use a Timer or Thread to handle it. First create a splash.xml file and also create an activity SplashActivity.java. public class SplashActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.splash.xml); Timer timer = new Timer(); … Read more