Maybe someone already faced this issue: My app background is white, RadListView Item Background is also White, but when I'm trying to do PullToRefresh black cell pops out with white Activity Indicator inside. Preview here: http://tinypic.com/r/5pkcgw/9
Any hint how to make it White instead of Black?
<
telerik:RadListView
x:Name
=
"SocialFeed"
HorizontalOptions
=
"FillAndExpand"
VerticalOptions
=
"FillAndExpand"
SelectionMode
=
"Single"
IsPullToRefreshEnabled
=
"True"
BackgroundColor
=
"Red"
>
<
telerik:RadListView.LayoutDefinition
>
<
listView:ListViewLinearLayout
Orientation
=
"Vertical"
VerticalItemSpacing
=
"0"
/>
</
telerik:RadListView.LayoutDefinition
>
<
telerik:RadListView.ItemStyle
>
<
listView:ListViewItemStyle
BackgroundColor
=
"White"
BorderWidth
=
"1"
BorderColor
=
"#C8C7CC"
BorderLocation
=
"Bottom"
/>
</
telerik:RadListView.ItemStyle
>
<
telerik:RadListView.PressedItemStyle
>
<
listView:ListViewItemStyle
BackgroundColor
=
"White"
BorderWidth
=
"1"
BorderColor
=
"#C8C7CC"
BorderLocation
=
"Bottom"
/>
</
telerik:RadListView.PressedItemStyle
>
<
telerik:RadListView.SelectedItemStyle
>
<
listView:ListViewItemStyle
BackgroundColor
=
"White"
BorderWidth
=
"1"
BorderColor
=
"#C8C7CC"
BorderLocation
=
"Bottom"
/>
</
telerik:RadListView.SelectedItemStyle
>
<
telerik:RadListView.ItemTemplate
>
<
DataTemplate
>
...
</
DataTemplate
>
</
telerik:RadListView.ItemTemplate
>
</
telerik:RadListView
>