SplashScreen.cs 501 B

123456789101112131415161718192021
  1. using Android.App;
  2. using Android.Content.PM;
  3. using Cirrious.MvvmCross.Droid.Views;
  4. namespace Xamarin_Insights.Android
  5. {
  6. [Activity(
  7. Label = "Xamarin_Insights.Android"
  8. , MainLauncher = true
  9. , Icon = "@drawable/icon"
  10. , Theme = "@style/Theme.Splash"
  11. , NoHistory = true
  12. , ScreenOrientation = ScreenOrientation.Portrait)]
  13. public class SplashScreen : MvxSplashScreenActivity
  14. {
  15. public SplashScreen()
  16. : base(Resource.Layout.SplashScreen)
  17. {
  18. }
  19. }
  20. }