I want to set the text appearance in my theme to be TextAppearnance.Large. Here is what I am doing in my styles.xml (my application is pointing to this theme in my manifest)
<style name="myTheme" parent="android:Theme.NoTitleBar.Fullscreen">
<item name="android:textAppearance">@android:style/TextAppearance.Large</item>
</style>
Problem: My text is still being displayed small.
Question(s):
- What am I doing wrong in trying to use a predefined TextAppearance in my activity? i.e. How do specify this TextAppearance correctly?
- Where are the TextSizes for TextAppearance.Large/Medium/Small defined?
?android:attr/TextAppearance.Largeinside the item tags produces a compile error. – celoftis Nov 9 '11 at 18:04