package org.med.darknetandroid; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; public class WelcomeActivity extends AppCompatActivity { private static int SPLASH_TIME = 3000; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_welcome); new Handler().postDelayed(new Runnable() { @Override public void run() { Intent welcome = new Intent(WelcomeActivity.this, CameraActivity.class); startActivity(welcome); finish(); } },SPLASH_TIME); } }