Код: Выделить всё
android {
compileSdkVersion 31
...
}
dependencies {
...
implementation 'androidx.core:core-splashscreen:1.0.0-alpha01'
}
Код: Выделить всё
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Handle the splash screen transition.
SplashScreen splashScreen = SplashScreen.installSplashScreen(this);
setContentView(R.layout.main_activity);
}
}
Я видел этот пост с некоторыми предложениями. Я пробовал оба
Код: Выделить всё
import android.window.SplashScreen;
import androidx.core.splashscreen.SplashScreen;
Подробнее здесь: https://stackoverflow.com/questions/706 ... screenthis
Мобильная версия