m using this control on iOS and Android devices, im using it to display my medication names to the user with the following code:
MedSuggestions = await medicinemanager.getApprovedMedicines();
autoComplete.DataSource = MedSuggestions;
autoComplete.DisplayMemberPath = "MedName";
autoComplete.SelectedValuePath = "Id";
This is working fine for iOS and is correctly showing the med name in the dropdown list.
But when i use it on my android device the autocomplete dropdown list shows the Id instead of the MedName, for some reason every 1 in 10 times it will show the MedName in the autocomplete dropdown list but i cant seem to figure out why it is doing this ? This is only happening on Android devices , all is ok on iOS. Can you help ?