private void LoadSearchTab() { base.ResetGrid(); this.backButtonHelper.AddElementToTopLayer(this.searchOverlay); UXUtils.SetSpriteTopAnchorPoint(this.scrollUp, -175); this.AddEmptySpacingItem(); }
private void LoadFeatureSquads() { base.ResetGrid(); this.AddCreateSquadItem(SocialTabs.Featured); base.AddItemsToGrid <Squad>(Service.LeaderboardController.FeaturedSquads.List, true, false); UXUtils.SetSpriteTopAnchorPoint(this.scrollUp, -4); }
protected void LoadFriends() { this.ResetGrid(); ProcessingScreen.Show(); Service.ISocialDataController.FriendsDetailsCB = new OnFBFriendsDelegate(this.OnFriendsListLoaded); Service.ISocialDataController.UpdateFriends(); UXUtils.SetSpriteTopAnchorPoint(this.scrollUp, -4); }
private void LoadSquadInvites() { base.ResetGrid(); List <SquadInvite> squadInvites = Service.SquadController.StateManager.SquadInvites; if (squadInvites != null && this.squadIdsRequiringDetails.Count == 0) { base.AddItemsToGrid <SquadInvite>(squadInvites, true, false); } else { ProcessingScreen.Show(); } UXUtils.SetSpriteTopAnchorPoint(this.scrollUp, -4); }