1
Как применить стиль ко всем кнопкам приложения Android
У меня есть стиль, примененный ко всему моему приложению: AndroidManifest.xml: <application android:theme="@style/ApplicationStyle" android:icon="@drawable/icon" android:label="@string/app_name"> И в моем файле styles.xml: <style name="ApplicationStyle" parent="android:Theme"> <item name="android:button">@style/CKButton</item> </style> <style name="CKButton" parent="android:style/Widget.Button"> <item name="android:textSize">19sp</item> <item name="android:layout_margin">0dip</item> <item name="android:background">#ff0000</item> </style> Но стиль не применяется. Прошу прощения, если я просто использовал ложное имя в ApplicationStyle- Item, …
131
android
button
stylesheet