Xamarin Android -建立Splash Screen (一)

來源:互聯網
上載者:User

標籤:

。。。。。。(空話少說)

Xamarin 開發的技術資料很少,通過學習,把自己的學習過程及其中碰到的問題與大家分享。

Splash Screen 就是在應用程式啟動時,出現的一張圖片,一般App的Splash Screen都是動態廣告資訊。

先學習一下如何載入一個固定的Splash Screen.

一、在Resource/values/Styles.xml添加代碼。

<?xml version="1.0" encoding="UTF-8" ?><resources>  <style name="Theme.SplashActivity" parent="android:Theme.Holo.Light.NoActionBar">    <item name="android:windowBackground">@drawable/ic_splash_logo</item>  </style></resources>

  其中的android:windowBackground設定成要載入的圖片。

二、建立一個SplashActivity的類檔案,代碼如下:

namespace MyApplication{    using System.Threading;    using Android.App;    using Android.OS;    [Activity (Label = "SplashScreen", MainLauncher=true, NoHistory=true, Theme="@style/Theme.SplashActivity")]    public class SplashActivity : Activity    {        protected override void OnCreate(Bundle bundle)        {            base.OnCreate(bundle);            // 設定線程等待            Thread.Sleep(2000);             //啟動MainActivity            StartActivity(typeof(MainActivity));        }    }}

  參數說明:

      1.MainLauncher:表示該Activity是一個啟動Activity,當應用程式啟動時,自動從此頁啟動。

      2.Theme-自訂樣式檔案。

      3.NoHistory-在預設的情況下,可以從一個Activity進入下一個Activity,同時也可以從下一個反回到上一個。此因,

      我們這裡是Splash Screen,不需要從一下個返回到上一個,所以它的作用就是不記錄曆史操作。

注意:在MainActivity中不能在去設定MainLauncher屬性,如果設定了,在安裝時會現兩個應用程式套件。

 

Xamarin Android -建立Splash Screen (一)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.