This commit is contained in:
James Montemagno 2016-01-18 17:57:12 -07:00
Родитель d8842b22e6
Коммит 45c6237de0
1 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -17,14 +17,15 @@ namespace MyWeather.Droid
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
ToolbarResource = Resource.Layout.toolbar;
TabLayoutResource = Resource.Layout.tabs;
base.OnCreate (bundle);
Forms.Init(this, bundle);
Xamarin.Insights.Initialize(Xamarin.Insights.DebugModeKey, this);
ToolbarResource = Resource.Layout.toolbar;
TabLayoutResource = Resource.Layout.tabs;
LoadApplication(new App());
Forms.Init(this, bundle);
Xamarin.Insights.Initialize(Xamarin.Insights.DebugModeKey, this);
LoadApplication(new App());
}
}
}