Dear Team,
We are using community edition and tried combobox control from nuget packages Version (16.2.0.50).
Below is XAML
<StackLayout VerticalOptions="Start" HorizontalOptions="Start" BackgroundColor="Aqua" Padding="30" Margin="0,10,0,0">
<combobox:SfComboBox HeightRequest="40" EnableSelectionIndicator="True" x:Name="comboBox" />
</StackLayout>
Below is CODE
private void BindComboBoxes()
{
try
{
List<string> lstQty = new List<string> { "1", "2", "3", "4", "5" };
comboBox.DataSource = lstQty;
}
catch (Exception ex)
{
}
}
Its working perfectly fine on Marshmallow Andriod but when we try on Jellybean Tablet (Android version : 4.2.2), it does not display. If we give background color of combobox it shows on jellybean. i.e. control is rendering on device but items are not binding and item right arrow indicator is also not coming.
Is it not compatible with backward version of andriod ?
The minimum Android Version set as Andriod 4.1 (API Level 16- Jellybean)
Target Andriod Version set as Use compile SDK version for xamarin form project
Please suggest what wrong we are doing. As device can be from Jellybean to Latest one andriod.
Regards
PREM