• Xamarin.Forms<四> Android登录闪图


    Xamarin.Forms Android闪图(适用于纯Android系统)
    1、在Android.Resources.Drawable下添加好闪图的图片,命名为splashPicture。
    2、在Android.Resources.Drawable新建一个splashscreen.xml的文件。

    1 <?xml version="1.0" encoding="utf-8" ?>
    2 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    3         android:src="@drawable/splashPicture"
    4         android:gravity="center|fill"
    5         android:layout_gravity="center"/>
    View Code

    3、在Android.Resources下新建一个Values的文件夹,在该文件夹下新建一个Styles.xml文件。

     1 <?xml version="1.0" encoding="utf-8" ?>
     2 <resources>
     3   <style name="Theme.Splash"
     4          parent="android:Theme.Holo.Light">
     5     <item name="android:windowBackground">@drawable/splashscreen</item>
     6     <item name="android:windowNoTitle">true</item>
     7     <item name="android:windowIsTranslucent">false</item>
     8     <item name="android:windowIsFloating">false</item>
     9     <item name="android:backgroundDimEnabled">true</item>
    10   </style>
    11 </resources>
    View Code

    4、在Android下新建一个SplashScreen的类

     1     [Activity(Label = "Test",MainLauncher = true, NoHistory = true, Theme = "@style/Theme.Splash",
     2     ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
     3     public class SplashScreen : Activity
     4     {
     5         protected override void OnCreate(Bundle bundle)
     6         {
     7             base.OnCreate(bundle);
     8             var intent = new Intent(this, typeof(MainActivity));
     9             StartActivity(intent);
    10             Finish();
    11         }
    12     }
    View Code

    5、将Android下的MainActivity.cs文件中的MainLauncher = true去掉。

    1 [Activity(Label = "Test", WindowSoftInputMode = SoftInput.StateHidden | SoftInput.AdjustPan, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
    2     
    View Code

    Over

  • 相关阅读:
    JSOIWC2019游记
    基础网络流题单
    【题解】Luogu P2472 [SCOI2007]蜥蜴
    【题解】Luogu P2057 [SHOI2007]善意的投票
    凸包略解
    【题解】Luogu P4324 [JSOI2016]扭动的回文串
    【题解】Luogu P4054 [JSOI2009]计数问题
    kruscal重构树略解
    【题解】bzoj 4478 [Jsoi2013]侦探jyy
    【题解】4465 [Jsoi2013]游戏中的学问
  • 原文地址:https://www.cnblogs.com/shadow-fei/p/4174351.html
Copyright © 2020-2023  润新知