SplashActivity.cs 383 B

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