Trying to change the color of the ScrollView
bar. I found this link here but I would prefer to write a custom renderer as I have with all my other controls:
Color of ScrollBar in ScrollView
The problem is, I can't find any property/method that has any effect on the bar color. Here is my attempt so far:
public class CustomScrollRenderer : ScrollViewRenderer
{
public CustomScrollRenderer(Context context) : base(context)
{
}
protected override void OnElementChanged(VisualElementChangedEventArgs e)
{
base.OnElementChanged(e);
this.ScrollBarSize = 50;
this.ScrollBarDefaultDelayBeforeFade = 60000;
this.SetBackgroundColor(Android.Graphics.Color.Red);
this.SetOutlineAmbientShadowColor(Android.Graphics.Color.Red);
this.SetOutlineSpotShadowColor(Android.Graphics.Color.Red);
}
}
In iOS , youneed to create a subclass of UIScrollView and rewrite the method LayoutSubviews
In Android
Create the
scrollbar_style
in Resource -> drawable