Answers for "android code wait seconds"

2

how to wait a few seconds in android studio

Handler handler = new Handler();
            handler.postDelayed(new Runnable() {
                public void run() {
                    // yourMethod();
                }
            }, 5000);   //5 seconds
Posted by: Guest on August-30-2020

Browse Popular Code Answers by Language