android call function after specific time

https‮al.www//:‬utturi.com
android call function after specific time
Runnable mToastRunnable;
Handler mHandler = new Handler();

//create runnable for delay
mToastRunnable = new Runnable() {
    @Override
    public void run() {
        Toast.makeText(MainActivity.this, "This is a delayed toast", Toast.LENGTH_SHORT).show();
        mHandler.postDelayed(this, 3000000);
        getlocation();
    }
};

//start
 mToastRunnable.run();

//stop
 mHandler.removeCallbacks(mToastRunnable);
Created Time:2017-09-01 22:30:30  Author:lautturi