我正在尝试将我现有的自定义启动屏幕实现迁移到 Android 12。我已经实现了与提供的链接中提到的完全相同的方式:如提供的链接中所述
当我在 SplashActivity 中编写以下语句时,它显示错误:
SplashActivity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
LogTracer.markMethodStart(TAG,"onCreate", LogTracer.Type.ACTIVITY_LIFECYCLE_METHOD, LogTracer.Priority.HIGH);
super.onCreate(savedInstanceState);
SplashScreen.installSplashScreen(this);
setContentView(R.layout.activity_splash);
}
错误:
Cannot resolve method 'installSplashScreen' in 'SplashScreen'
为了
SplashScreen.installSplashScreen(this);
我添加了以下依赖项:
implementation 'androidx.core:core-splashscreen:1.0.0-alpha01'