Guest User

Untitled

a guest
Jun 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1.         public override View GetView(int position, View convertView, ViewGroup parent)
  2.         {
  3.             var titleControl = new TextView(_application) {Text = this._categories.ElementAt(position).Title, TextSize = 19};
  4.             titleControl.SetTextColor(Color.White);
  5.  
  6.             var viewWrapper = new View(_application);
  7.  
  8.             var controls = new List<View> {titleControl};
  9.  
  10.             viewWrapper.AddTouchables(controls);
  11.  
  12.             return new View(_application);
  13.         }
Add Comment
Please, Sign In to add comment