I know that fonts properties can be found in the TypeFace class but I can't find the default caracteristics of the writing in Android. I mean, if I take a TextView and simply do setText("Blabla") on it, what will I get ?
which size in px?
which font?
...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
You can check the default style of the widgets here: android/res/values/styles.xml Then, looking for Textview you reach
and after researching a little bit, you find out that this appearance is defined in the same styles.xml file
where
these colors are defined in /res/color/, check /res/color/secondary_text_dark.xml Bookmarking the android/res/values folder is a must! Update: my links are broken, check Android core resources folder on Github. Thanks to kreker for the link. |
|||||||||||||||
|
|
For the newer 4.0 ICS etc there's the Android design pages which shows a list of font sizes: http://developer.android.com/design/style/typography.html All specified as 'sp' units HTH |
|||
|
|