You can try adding the following to the Resources / values ββfolder as styles.xml.
<?xml version="1.0" encoding="UTF-8" ?> <resources> <style name="MyCustomTheme" parent="android:Theme.Material"> <item name="android:textAllCaps">false</item> </style> </resources>
Then in your MainActivity.cs apply this custom theme
[Activity(Label = "MyActivity", Theme = "@style/MyCustomTheme")]
source share