I have custom view radio button. Almost same as in MS example Binding value text dont work on Android.
If i write text instead {Binding Name} it appears in radio button content as expected.
<DataTemplate x:Key="RadioTemplate" x:DataType="dtoModels:PossibleAnswer">
<Frame Padding="10,5,10,5" CornerRadius="10" HasShadow="True">
<RadioButton GroupName="{Binding GroupId}" IsChecked="{Binding IsChecked}" Style="{StaticResource RadioButtonSurvey}">
<RadioButton.Content>
<Label Text="{Binding Name}"/>
</RadioButton.Content>
</RadioButton>
</Frame>
</DataTemplate>