Exemple #1
0
        public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
        {
            View v = inflater.Inflate(Resource.Layout.ChooseCoffee, null);

            favChecked = false;

            v.FindViewById <ImageView> (Resource.Id.chosen_logo).SetBackgroundResource(TempStorage.ChosenLogo);
            coffeeLv  = v.FindViewById <ExpandableListView> (Android.Resource.Id.List);
            payButton = v.FindViewById <Button> (Resource.Id.btnPay);

            payButton.Click += delegate {
                ProcessPayments();
            };

            coffeeAdapter = new ExpandableListAdapter(this.Activity, CoffeeData);

            coffeeLv.SetAdapter(coffeeAdapter);
            coffeeLv.SetOnChildClickListener(this);

            //don't forget!
            price = "4.50";

            return(v);
        }
		public override View OnCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
		{
			View v = inflater.Inflate (Resource.Layout.ChooseCoffee, null);

			favChecked = false;

			v.FindViewById<ImageView> (Resource.Id.chosen_logo).SetBackgroundResource (TempStorage.ChosenLogo);
			coffeeLv = v.FindViewById<ExpandableListView> (Android.Resource.Id.List);
			payButton = v.FindViewById<Button> (Resource.Id.btnPay);

			payButton.Click += delegate {
				ProcessPayments();
			};

			coffeeAdapter = new ExpandableListAdapter (this.Activity, CoffeeData);

			coffeeLv.SetAdapter(coffeeAdapter);
			coffeeLv.SetOnChildClickListener (this);

			//don't forget!
			price = "4.50";

			return v;
		}
		public override void OnActivityCreated(Bundle savedInstanceState) {
			base.OnActivityCreated (savedInstanceState);
			ExpandableListAdapter = this.ExpandableListAdapter;
		}
		public CoffeeFragment(Dictionary<string, List<string>> coffeeData, ExpandableListAdapter coffeeAdapter) {
			this.CoffeeData = coffeeData;
			this.ExpandableListAdapter = coffeeAdapter;
		}
Exemple #5
0
 public override void OnActivityCreated(Bundle savedInstanceState)
 {
     base.OnActivityCreated(savedInstanceState);
     ExpandableListAdapter = this.ExpandableListAdapter;
 }
Exemple #6
0
 public CoffeeFragment(Dictionary <string, List <string> > coffeeData, ExpandableListAdapter coffeeAdapter)
 {
     this.CoffeeData            = coffeeData;
     this.ExpandableListAdapter = coffeeAdapter;
 }