コード例 #1
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();
            LoadApplication(new App());

            // load hollidays from json file
            HollidayLoader.Loader = new StreamLoader();
            HollidayLoader.Load();

            return(base.FinishedLaunching(app, options));
        }
コード例 #2
0
        protected async override void OnCreate(Bundle bundle)
        {
            TabLayoutResource = Resource.Layout.Tabbar;
            ToolbarResource   = Resource.Layout.Toolbar;

            base.OnCreate(bundle);

            // load hollidays from Json file
            HollidayLoader.Loader = new StreamLoader(this);
            await HollidayLoader.Load();

            // register TextToSpeech service to unity container
            ServiceManager.Container = new UnityContainer();
            ServiceManager.Container.RegisterType <ITextToSpeech, TextToSpeechService>("TextToSpeechService");

            global::Xamarin.Forms.Forms.Init(this, bundle);
            LoadApplication(new App());
        }