Ejemplo n.º 1
0
 void UpdateTitleColor()
 {
     if (CellBase.TitleColor != Xamarin.Forms.Color.Default)
     {
         TitleLabel.SetTextColor(CellBase.TitleColor.ToAndroid());
     }
     else if (CellParent != null && CellParent.CellTitleColor != Xamarin.Forms.Color.Default)
     {
         TitleLabel.SetTextColor(CellParent.CellTitleColor.ToAndroid());
     }
     else
     {
         TitleLabel.SetTextColor(_defaultTextColor);
     }
 }