Example #1
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Create your application here
            SetContentView(Resource.Layout.Miki);

            ThreadPool.QueueUserWorkItem(
                state =>
                {
                    ImagingData data = new ImagingData();
                    data.Init();
                    RunOnUiThread(new Action(() =>
                    {
                        InitializeCategoriesList(data);
                        InitializeImagesList(data);
                    }
                    ));
                }
                );
        }