How do I compare the values I have in a Spinner in Android C #?

0

What happens is that I have more than one Spinner in my project, three to be specific, and I want to compare it so that when they have the same values I get a normal message saying that I select different values

sp = FindViewById<Spinner>(Resource.Id.sp);
sp2 = FindViewById<Spinner>(Resource.Id.sp2);
sp3= FindViewById<Spinner>(Resource.Id.sp3);

Button cargarSpinner = FindViewById<Button>(Resource.Id.button1);
cargarRecetas.Click += cargarRecetas_Click;
    
asked by alexander 06.07.2018 в 22:58
source

0 answers