Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?
share|improve this question
Take a look at this question which was asked earlier on stackoverflow. stackoverflow.com/questions/1726897/… May be it can help. – code_hacker Nov 9 '11 at 16:59
Yes, I saw that post, but using ?android:attr/TextAppearance.Large inside the item tags produces a compile error. – celoftis Nov 9 '11 at 18:04
My answer here may help: stackoverflow.com/a/8380153/102703 – Roman Nurik Dec 5 '11 at 3:42

1 Answer

themes and styles are defined in the themes.xml and styles.xml files of the sdk implementations in your environment (distinct ones for different android versions or sdk levels).

search your computer for themes.xml (you will probably find multiple instances of it in the "program files/android" folder on a windows 32-bit machine, for example).

this post explains how to customize these attributes.

you can also set explicit size attributes in your xml layout file, by modifying the TextView tag attributes:

<TextView  
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content"  
    android:text="15sp is the 'normal' size."  
    android:textSize="15sp"  
    />

this post explains how to customize android fonts (including fontType, fontColor, shadow, bold, italic) directly in xml layout file.

share|improve this answer
you just have to love these jerks who downvote an answer without having the courtesy to say why they did so AND without proposing a solution of their own, to prove that they know what they are talking about. stackoverflow should make it mandatory to explain why downvote was made and only allow people with genuine solutions or proposals to downvote. – tony gil Dec 6 '12 at 9:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.