我知道无论出于什么原因谷歌决定让所有按钮文字都在棒棒糖中大写。
如何在我的appcelerator应用程序中设置它,我的所有按钮文本都不是大写,但只是我输入了它?
答案 0 :(得分:6)
您只需要在下面定义一个Android值 /app/platform/android/res/values.xml
<resources>
<style name="Theme.myTheme" parent="@style/Theme.AppCompat.NoActionBar">
<item name="android:buttonStyle">@style/customButton</item>
</style>
<style name="customButton" parent="Widget.AppCompat.Button">
<item name="android:textAllCaps">false</item>
</style>
将android主题添加到manifest(Theme.myTheme):
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<supports-screens android:anyDensity="false"
android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.autofocus"/>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
<application android:debuggable="true"
android:icon="@drawable/appicon"
android:largeHeap="true" android:theme="@style/Theme.myTheme">
<activity
android:configChanges="keyboardHidden|orientation|screenSize" android:name="org.appcelerator.titanium.TiActivity"/>
</application>
</manifest>
</android>
答案 1 :(得分:0)
为什么需要使用按钮并依赖系统的默认布局?
您可以只使用View来收听点击事件。
您可以根据需要设置视图样式,并且在不同平台上看起来相同。