Hi at all,

I tried to write my own style.xml:

<style name="big_strong" parent="@android:style/
TextAppearance.Medium">
        <item name="android:textColor">#000000</item>
        <item name="android:typeface">normal</item>
    </style>

    <style name="italic" parent="@android:style/TextAppearance.Small">
        <item name="android:textColor">#000000</item>
        <item name="android:typeface">italic</item>
    </style>

But Eclipse doesn't compile because doesn't recognize the "italic"
word: what's wrong?

The typeface constant which are explained here
http://developer.android.com/reference/android/graphics/Typeface.html
include italic tag...

Thank in advance.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to