Hello,
I have a problem while creating styles in android:
When I use
android:textAppearance="?android:attr/textAppearanceSmall"
in Button for instance, that's working fine, but if I create a styles.xml like:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="smalltext" parent="@style/Text">
<item name="android:textSize">10sp</item>
<item name="android:textColor">#FFF</item>
<item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
</style>
</resources>
and replace in Button:
style="@style/smalltext"
nothing is taken into account.
Would you have any idea of what could be wrong ?
thanks a lot, Luc