I added a control Google.Android.Material.Slider and I need to listen when user select a value on it. According to Google's documentation (https://material.io/components/sliders/android#using-sliders) the listeners may be addOnChangeListener or addOnSliderTouchListener but these events aren't available to implement on Xamarin AndroidX Material package.
I'm using the package Xamarin.Google.Android.Material version 1.3.0.1
There's another event that listen and return the selected value when it change or another way to implement it?
You can get his method by reflection, and then listen to it:
so let your activity implement
IBaseOnChangeListener
interface: