I have a shape as the background of my linear layout, that shape is a ring that is in sn XML file in drawable, I'm trying to find out how to change the color of this shape in my C# files, I'm working in Xamarin on Visual Studio for Mac
This is my code:
<?xml version="1.0" encoding="utf-8" ?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/rng">
<shape
android:shape="ring"
android:innerRadius="150dp"
android:thickness="10dp"
android:useLevel="false">
<solid android:color="#ababf2" />
</shape>
</item>
</layer-list>
...