У меня есть тема, которая не применяется к действиям - ни один из стилей не применяется. Если я не предоставлю атрибуты layout_width
/ layout_height
для <Button>
, он также получит ошибку времени выполнения, показывающую, что класс Button
не применяется.
/ Рез / значения / themes.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme" parent="android:style/Theme.Black">
<item name="android:windowNoTitle">true</item>
<item name="android:buttonStyle">@style/Button</item>
<item name="android:windowBackground">@color/page_background_light</item>
<item name="android:textAppearance">@style/TextAppearance</item>
</style>
</resources>
/ Рез / значения / styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="TextAppearance" parent="@android:style/TextAppearance">
<item name="android:textSize">12sp</item>
<item name="android:textColor">@color/darkblue</item>
</style>
<style name="Button" parent="@android:style/Widget.Button">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<!--<item name="android:textColor">#3C2F4F</item>
<item name="android:textSize">20dip</item>-->
</style>
</resources>
и соответствующая настройка манифеста :
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/Theme">
Какая очевидная ошибка, которую я упускаю?