像Gmail这样的SplashScreen

时间:2014-01-14 18:20:17

标签: c# android mvvmcross

我想将SplashScreen显示为Gmail。也就是说,显示ActionBar并从程序上加载主屏幕中的所有数据

我在应用程序空白处测试了它,然后首先显示黑屏,然后加载我的设计

这是应用程序空白的代码SplashScreen。

[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)
    {
    }

如何避免这种行为?

提前致谢

0 个答案:

没有答案