在Xamarin.Forms Android中设置选定的ListView TextColor

时间:2016-08-03 08:48:13

标签: android xamarin xamarin.forms

我想在Xamarin Forms Android中将ListViewItem的所选文本颜色设置为白色。

在iOS上,我可以使用自定义ListViewRenderer和自定义UITableViewSource来设置HighlightedTextColor。

cell.TextLabel.HighlightedTextColor = UIColor.FromRGB(255, 255, 255);

在Android中是否有相同的功能?我已经使用Resource.Attribute ColorControlActivated尝试了它,但它无效。

1 个答案:

答案 0 :(得分:0)

//Android Color Class is in the root of the Resource Class         
     ListViewItem.TextColor = Android.Resource.Color.White;