SplashActivity.cs 442 B

1234567891011121314151617
  1. using Android.App;
  2. using Android.Content;
  3. using Avalonia.Android;
  4. namespace MobileSandbox.Android
  5. {
  6. [Activity(Theme = "@style/MyTheme.Splash", MainLauncher = true, NoHistory = true)]
  7. public class SplashActivity : AvaloniaSplashActivity<App>
  8. {
  9. protected override void OnResume()
  10. {
  11. base.OnResume();
  12. StartActivity(new Intent(Application.Context, typeof(MainActivity)));
  13. }
  14. }
  15. }