我需要更改Xamarin.Forms應用程序中的列表視圖的選定項目顏色。 所以我創建了一個自定義渲染...Xamarin.Forms iOS listview選定的項目顏色
PCL C#:
public class DarkViewCell : ViewCell {}
PCL XAML:
<ListView>
<ListView.ItemTemplate>
<DataTemplate>
<local:DarkViewCell>
<ViewCell.View>
... Stuff ...
</ViewCell.View>
</local:DarkViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
的iOS
public class DarkViewCellRenderer : ViewCellRenderer
{
private UIView bgView;
public override UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
{
var cell = base.GetCell(item, reusableCell, tv);
cell.BackgroundColor = UIColor.Black;
cell.TextLabel.TextColor = UIColor.White;
if (bgView == null)
{
bgView = new UIView(cell.SelectedBackgroundView.Bounds);
bgView.Layer.BackgroundColor = UIColor.FromRGB(48,48,48).CGColor;
bgView.Layer.BorderColor = UIColor.FromRGB(48, 48, 48).CGColor;
bgView.Layer.BorderWidth = 2.0f;
}
cell.SelectedBackgroundView = bgView;
return cell;
}
}
但不工作。我也試圖改變SelectionStyle但沒有...
編輯
在一個新項目,它的工作原理。和代碼是一樣的
這是我嘗試的第一件事 –
自定義渲染器中的其他任何東西是工作還是根本不工作?我只是從我自己的一個項目中複製了一段代碼,它完全按照需要工作。 –
更新了我的答案。 –