See if this works for you. Be sure to import the android.os.Handler
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
// yourMethod();
}
}, 5000); //5 seconds
or Kotlin
Handler().postDelayed({
// yourMethod()
}, 5000)