I am developing an Android app using Xamarin and I'm looking for a solution of making restrictions on Android seekbars to prevent users from moving the seekbar to the right (increasing the value).
Currently, the page has 4 seekbars and each of them represent a number of Apple to be given to a person from "Basket" (Basket is shared amongst everyone). (A, B, C, D)
If "basket" has any values (basket is an int type), then users can move any of the sliders. For example, If they wish to give more apple to A then simply they can just move the first slider to the right.
IF "basket" doesn't have any values then none of the sliders should be able to move.
Because there are 4 seekbars (4 ppl) and it has to be synchronised (meaning that every change in the bar must be taken into an account as ppl share the same "basket")
Is there a way to disable seekbars from moving to the right?
Thanks In advance