Hello I want to make my intent happen after 1second, its purpose is a flash screen at the start of my application.
//Creates a new screen for the painter to select what route he wants to go down. A flash screen.
public void nScreen(View view)
{
Intent intent = new Intent(MainActivity.this, Main22Activity.class);
startActivity(intent);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}