Я сохранил свой собственный файл темы внутри
App->Platform->Android->res->values->mytheme.xml
, и мой xml-файл выглядит так, как показано ниже, и он отлично работает для меня ..
<resources>
<style name="Theme.MyTheme" parent="Theme.AppCompat.NoTitleBar.Fullscreen">
<item name="buttonStyle">@style/MyButton</item>
</style>
<style name="MyButton" parent="Widget.AppCompat.Button">
<item name="android:textAllCaps">false</item>
</style>
</resources>
и в файле tiapp.xml внутриMaifest
<application android:theme="@style/Theme.MyTheme"/>