I am new to mobile development, I am developing a simple app using Xamarin studio and added few buttons on my page. I noticed that all button texts are appeared in CAPITAL LETTERS when i run it in emulator (Android 5.0.1 - API 21).
I already followed Why is my Button text forced to ALL CAPS on Lollipop? and tried to add <item name="android:textAllCaps">false</item>
in my style.xml but it doesn't make any difference.
Also checked Why is my Button text forced to ALL CAPS on Lollipop? and Android 5.0 (Lollipop) widget button's text are in ALL CAPS.
If I add android:textAllCaps = "false"
to my all buttons (in my axml files) then it will work but I want to know the generalized style for all buttons across the application (in multiple forms/activities even)
Can anyone please suggest a way to use some style across the application?
Thank you.