Question

I want to show a SplashScreen as Gmail. that is, show the ActionBar and load all data from my main screen procedurally

I've tested it on an application blank and first show a black screen then load my design

This is my code SplashScreen for the application blank.

[Activity(
    Label = "SampleQuickApp.Droid"
    , MainLauncher = true
    , Icon = "@drawable/icon"
    , Theme = "@style/Theme.Splash"
    , NoHistory = true
    , ScreenOrientation = ScreenOrientation.Portrait)]
public class SplashScreen : MvxSplashScreenActivity
{
    public SplashScreen()
        : base(Resource.Layout.FirstView)
    {
    }

How avoid this behaviour?

Thanks in advance

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top