//int count = 1;
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            // Create a new fragment and a transaction.
            FragmentTransaction fragmentTx = this.FragmentManager.BeginTransaction();
            if (bundle == null)
            {
                ForecastFragment aDifferentDetailsFrag = new ForecastFragment();

                // The fragment will have the ID of Resource.Id.fragment_container.
                fragmentTx.Add(Resource.Id.container, aDifferentDetailsFrag);

                // Commit the transaction.
                fragmentTx.Commit();
            }

            // Get our button from the layout resource,
            // and attach an event to it
            // Button button = FindViewById<Button>(Resource.Id.MyButton);

            //button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };
        }
Esempio n. 2
0
        //int count = 1;

        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            // Create a new fragment and a transaction.
            FragmentTransaction fragmentTx = this.FragmentManager.BeginTransaction();

            if (bundle == null)
            {
                ForecastFragment aDifferentDetailsFrag = new ForecastFragment();

                // The fragment will have the ID of Resource.Id.fragment_container.
                fragmentTx.Add(Resource.Id.container, aDifferentDetailsFrag);

                // Commit the transaction.
                fragmentTx.Commit();
            }

            // Get our button from the layout resource,
            // and attach an event to it
            // Button button = FindViewById<Button>(Resource.Id.MyButton);

            //button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };
        }