2015-11-18 156 views
3

我正在創建一個顯示啓動畫面並創建主要活動的應用程序。我下面這個教程,似乎相當直截了當:https://developer.xamarin.com/guides/android/user_interface/creating_a_splash_screen/Xamarin中的啓動畫面太慢Android

實現,我可以順利看到啓動後,但也有一些次(1比20),其與S5我看到以下畫面:

Wrong screen

其次(右)飛濺(從仿真器中獲得,但只是爲了讓我的觀點):

enter image description here

所以我的猜測因爲有時Xamarin花了很長時間來加載應用程序,因此它有一個延遲顯示飛濺。有什麼辦法可以防止這種情況發生?

更新1 我跟着教程,但我已經刪除了睡眠這個:

Insights.Initialize ("<APP_KEY>", Application.Context); 
StartActivity(typeof (MainActivity)); 
+0

您是否在splash主題中設置了正確的圖像,併爲該活動設置了主題,如教程中所示?它看起來像你的活動沒有windowBackground圖像。你有沒有檢查過其他版本的Android? – dylansturg

+0

是的,我已經設置了一切像教程和19 20年它看起來不錯,只有20出現在第一屏不到一秒鐘,然後顯示第二個與正確的佈局。 –

+1

[Xamarin Splash屏幕示例可能在手機橫向模式下不起作用。如何解決它?](http://stackoverflow.com/questions/29991174/xamarin-splash-screen-example-does-not-work-in-landscape-mode-on-a-phone-how-to) – matthewrdev

回答

3

的例子調用UI線程上的Thread.Sleep(10000); ...... 這將鎖住應用程序並生成一個ANR

修復它由backgrounding睡眠,然後觸發下一個活動:

namespace SplashScreen 
{ 
    using System.Threading; 

    using Android.App; 
    using Android.OS; 

    [Activity(Theme = "@style/Theme.Splash", MainLauncher = true, NoHistory = true)] 
    public class SplashActivity : Activity 
    { 
     protected override void OnCreate(Bundle bundle) 
     { 
      base.OnCreate(bundle); 

      Task.Run (() => { 
       Thread.Sleep (10000); // Simulate a long loading process on app startup. 
       RunOnUiThread (() => { 
        StartActivity (typeof(Activity1)); 
       }); 
      }); 
     } 
    } 
} 
+0

感謝您的答案,但我沒有使用睡眠,我更新了我的問題,但我認爲你的反應仍然適用。我會及時向大家發佈 –

0

即使這個職位是比較舊的,我實現閃屏,並可能通過更新樣式解決這個時候也有過類似的經歷/ SplashScreen的主題。 @frederico m rinaldi有時看到的屏幕通常是使用Android的默認(Holo)主題創建的。

雖然您沒有提供適用於SplashScreen的樣式(請參閱accepted answerTheme = @style/Theme.Splash),但這是我的。也許你可以檢查它們是否有所不同。

<style name="Theme.Splash" parent ="Theme.AppCompat.Light.NoActionBar"> 
    <!-- Use a fully opaque color as background. --> 
    <item name="android:windowBackground">@android:color/black</item> 
    <!-- This removes the title bar seen within the first screen. --> 
    <item name="windowNoTitle">true</item> 
    <!-- Let the splash screen use the entire screen space by enabling full screen mode --> 
    <item name="android:windowFullscreen">true</item> 
    <!-- Hide the ActionBar (Might be already defined within the parent theme) --> 
    <item name="windowActionBar">false</item> 
</style> 

您可能注意到,我只是用黑色作爲背景,因爲我的閃屏使用自定義佈局文件,而不是靜態圖像(this.SetContentView(Resource.Layout.SplashScreen);)。此外,加載圖像(drawable)可能需要一些時間,這可能是您可以看到默認主題而不是啓動屏幕的主要原因。 此外,我省略了android: XML名稱空間的某些屬性,這是由於Android支持庫功能的Google's internal implementation

請注意,爲了使用程序兼容性的主題,你的應用程序必須包括AppCompat support library和你的活動必須繼承Android.Support.V7.App.AppCompatActivity