2016-05-19 06:55:30 +03:00
|
|
|
|
using Android.Content;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using Android.Views;
|
|
|
|
|
using Bit.Android.Controls;
|
|
|
|
|
using Bit.App.Controls;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
using Xamarin.Forms.Platform.Android;
|
|
|
|
|
using AView = Android.Views.View;
|
|
|
|
|
|
|
|
|
|
[assembly: ExportRenderer(typeof(ExtendedSwitchCell), typeof(ExtendedSwitchCellRenderer))]
|
|
|
|
|
namespace Bit.Android.Controls
|
|
|
|
|
{
|
|
|
|
|
public class ExtendedSwitchCellRenderer : SwitchCellRenderer
|
|
|
|
|
{
|
2016-08-19 03:20:18 +03:00
|
|
|
|
protected BaseCellView View { get; private set; }
|
2016-05-19 06:55:30 +03:00
|
|
|
|
|
|
|
|
|
protected override AView GetCellCore(Cell item, AView convertView, ViewGroup parent, Context context)
|
|
|
|
|
{
|
2016-08-19 03:20:18 +03:00
|
|
|
|
var View = base.GetCellCore(item, convertView, parent, context) as SwitchCellView;
|
2016-05-19 06:55:30 +03:00
|
|
|
|
var extendedCell = (ExtendedSwitchCell)item;
|
|
|
|
|
|
|
|
|
|
if(View != null)
|
|
|
|
|
{
|
|
|
|
|
View.SetBackgroundColor(extendedCell.BackgroundColor.ToAndroid());
|
2016-08-19 03:20:18 +03:00
|
|
|
|
if(item.IsEnabled)
|
|
|
|
|
{
|
|
|
|
|
View.SetMainTextColor(Color.Black);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-08-19 07:27:37 +03:00
|
|
|
|
View.SetMainTextColor(Color.FromHex("777777"));
|
2016-08-19 03:20:18 +03:00
|
|
|
|
}
|
2016-05-19 06:55:30 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return View;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnCellPropertyChanged(object sender, PropertyChangedEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
base.OnCellPropertyChanged(sender, args);
|
|
|
|
|
|
|
|
|
|
var cell = (ExtendedSwitchCell)Cell;
|
|
|
|
|
|
|
|
|
|
if(args.PropertyName == ExtendedSwitchCell.BackgroundColorProperty.PropertyName)
|
|
|
|
|
{
|
|
|
|
|
View.SetBackgroundColor(cell.BackgroundColor.ToAndroid());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|