I have this code for my splash screen
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
startActivity(new Intent(Splash.this, Home.class));
Log.i(TAG, "Exiting Splash Screen");
finish();
}
}, TIMEOUT_TIME);
is it possible to get what is the current time at TIMEOUT_TIME from inside the run(){}?