private void AddViews()
 {
     _relativeLayout = ViewUtils.AddRelativeLayout(this);
     _topTop         = _relativeLayout.AddTextView("this.GetCenterX() == _layoutView.GetCenterX() \n&& this.Top == relativeLayout.Top", Colors.Gold, Colors.DarkGrey);
     _center         = _relativeLayout.AddTextView("this.GetCenter() == \nrelativeLayout.GetCenter()", Colors.DarkGrey, Colors.White);
     _top            = _relativeLayout.AddTextView("this.Bottom == \n_center.Top - 20", Colors.Yellow, Colors.DarkGrey);
     _upperLeft      = _relativeLayout.AddTextView("this.Height == 40 &&\nthis.Width == 140", Colors.YellowGreen, Colors.White);
     _left           = _relativeLayout.AddTextView("this.Right == \n_center.Left - 20", Colors.Green, Colors.White);
     _lowerLeft      = _relativeLayout.AddTextView("this.Right == _left.Right &&\nthis.Bottom == _bottom.Bottom", Colors.LightBlue, Colors.White);
     _bottom         = _relativeLayout.AddTextView("this.Top == \n_center.Bottom + 20", Colors.DarkBlue, Colors.White);
     _lowerRight     = _relativeLayout.AddTextView("this.Top == _bottom.Top &&\nthis.Left == _right.Left", Colors.BluePurple, Colors.White);
     _right          = _relativeLayout.AddTextView("this.Left == \n_center.Right + 20", Colors.Red, Colors.White);
     _upperRight     = _relativeLayout.AddTextView("this.Baseline ==\n_top.Baseline", Colors.Orange, Colors.White);
     _bottomBottom   = _relativeLayout.AddTextView("this.Height == ViewModel.Height.ToConst() && \nthis.Width == relativeLayout.Width", Colors.Purple, Colors.White);
 }