Using: targetSdkVersion (API Level) 30.
It's showing 'Handler()' is deprecated.
private void initDelay() {
new Handler().postDelayed(() -> LaunchNextActivity(), SPLASH_DELAY_IN_MILLIS);
}
Trying to remove bottom navigation soft keys in android for that using:
public void FullScreen() {
View decorView = getWindow().getDecorView();
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
decorView.setSystemUiVisibility(uiOptions);
}
Here also showing: 'SYSTEM_UI_FLAG_HIDE_NAVIGATION' is deprecated, 'SYSTEM_UI_FLAG_IMMERSIVE_STICKY' is deprecated, 'setSystemUiVisibility(int)' is deprecated. What are the replacements of all these.
Below are attached images for better understanding.