即使這個職位是比較舊的,我實現閃屏,並可能通過更新樣式解決這個時候也有過類似的經歷/ SplashScreen的主題。 @frederico m rinaldi有時看到的屏幕通常是使用Android的默認(Holo)主題創建的。
雖然您沒有提供適用於SplashScreen的樣式(請參閱accepted answer的Theme = @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
。
您是否在splash主題中設置了正確的圖像,併爲該活動設置了主題,如教程中所示?它看起來像你的活動沒有windowBackground圖像。你有沒有檢查過其他版本的Android? – dylansturg
是的,我已經設置了一切像教程和19 20年它看起來不錯,只有20出現在第一屏不到一秒鐘,然後顯示第二個與正確的佈局。 –
[Xamarin Splash屏幕示例可能在手機橫向模式下不起作用。如何解決它?](http://stackoverflow.com/questions/29991174/xamarin-splash-screen-example-does-not-work-in-landscape-mode-on-a-phone-how-to) – matthewrdev