No text on Android

Dear community,

this is the code I've populated my SegmentedControl:

```
List<string> source = new List<string>();
                        if(item.Pfad == nameof(Haushaltsposition.Verwendungsart))
                        {
                            if (CurrentPosition.position == (int)Haushaltsposition.Vermögen.Immobilie)
                            {
                                source.Add("gar nicht");
                                source.Add("als Sicherheit");
                                source.Add("verkaufen");
                            }
                            else
                            {
                                source.Add("gar nicht");
                                source.Add("als Sicherheit");
                                source.Add("auflösen");
                            }
                        }
                        var segmControl = new SfSegmentedControl()
                        {
                            ItemsSource = source,
                            FontSize = 15,
                            SelectionIndicatorSettings = new SelectionIndicatorSettings() { Color = (Color)MarkupExtensions.GetResourceValue("AccentSecondaryColor") },
                            Color = (Color)MarkupExtensions.GetResourceValue("AccentPrimaryColor"),
                            SelectionTextColor = (Color)MarkupExtensions.GetResourceValue("PrimaryColor"),
                            DisabledTextColor = (Color)MarkupExtensions.GetResourceValue("SecondaryTextColor"),
                            FontColor = (Color)MarkupExtensions.GetResourceValue("SecondaryTextColor"),
                            VisibleSegmentsCount = 3,
                            Margin = new Thickness(15,0,15,0),
                            BackgroundColor = Color.White,
                            SelectedIndex = 2
                        };
                        segmControl.SetBinding(SfSegmentedControl.SelectedIndexProperty, myBinding);
```
This is the view on UWP:


This is my view on Android:


Thank you for your advice.

3 Replies

RS Ruba Shanmugam Syncfusion Team March 1, 2021 10:02 AM UTC

Hi Marco,

Thank you for using Syncfusion products.

We have validated your query and we have fixed the reported issue in the last weekly Nuget release v18.4.0.44. Could please check your application with the latest one and let us know, if you have face any problem.

Regards,
Ruba Shanmugam


MA Marco replied to Ruba Shanmugam March 6, 2021 08:26 PM UTC

Hi Marco,

Thank you for using Syncfusion products.

We have validated your query and we have fixed the reported issue in the last weekly Nuget release v18.4.0.44. Could please check your application with the latest one and let us know, if you have face any problem.

Regards,
Ruba Shanmugam

Hello Ruba Shanmugam,

thank you very much for the fast response.
I've updated an everything is working fine!

Bye
Marco


RS Ruba Shanmugam Syncfusion Team March 8, 2021 08:40 AM UTC

Hi Macro,

We glad to hear that the latest version of Nuget (18.4.0.44) fixed your issue. Kindly let us know if you require further assistance on this. Hope we serve you better.

Regards,
Ruba Shanmugam

Loader.
Up arrow icon