Пример #1
0
 public StationGridAdapter(FragmentManager manager,
                           IList <SimpleStation> stations,
                           IMoyeuActions actions)
     : base(manager)
 {
     this.stations         = stations;
     this.actions          = actions;
     this.stationFragments = new StationCardFragment[stations.Count];
     this.backgrounds      = new Drawable[stations.Count];
 }
Пример #2
0
        public StationGridAdapter(FragmentManager manager,
		                           IList<SimpleStation> stations,
		                           IMoyeuActions actions)
            : base(manager)
        {
            this.stations = stations;
            this.actions = actions;
            this.stationFragments = new StationCardFragment[stations.Count];
            this.backgrounds = new Drawable[stations.Count];
        }
Пример #3
0
 public StationGridAdapter(FragmentManager manager,
                           IList <SimpleStation> stations,
                           IMoyeuActions actions)
     : base(manager)
 {
     this.stations         = stations;
     this.actions          = actions;
     this.stationFragments = new StationCardFragment[stations.Count];
     this.background       = ImageReference.ForDrawable(Resource.Drawable.pager_background);
     this.background2      = ImageReference.ForDrawable(Resource.Drawable.pager_background2);
 }