csharp 用于在Android上显示启动画面的代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 用于在Android上显示启动画面的代码相关的知识,希望对你有一定的参考价值。

Task startupWork = new Task(async () =>
{
    await Task.Delay(1000);
});

startupWork.ContinueWith(t =>
{
    StartActivity(new Intent(Application.Context, typeof(MainActivity)));
}, TaskScheduler.FromCurrentSynchronizationContext());

startupWork.Start();

以上是关于csharp 用于在Android上显示启动画面的代码的主要内容,如果未能解决你的问题,请参考以下文章

完整启动画面的 Lottie 动画不占用全屏

LaunchScreen.storyboard 中 iPad 启动画面的不同背景图像,用于横向和纵向模式

从 Jetpack SplashScreen 深度探讨 App 启动画面的前世今生~

Android上的启动画面无法正常工作

启动画面的延迟窗口

启动图像/启动画面的区别和需要哪一个?