michael
michael

Reputation: 110630

How can I specify a smaller font than textAppearanceSmall?

In android, I can specify text appearance like this:

 <TextView
            android:id="@+id/text"
            android:textAppearance="?android:attr/textAppearanceSmall"/>

Can you please tell me how can I specify a even smaller size than "textAppearaneSmall"?

Upvotes: 10

Views: 13669

Answers (1)

Bosah Chude
Bosah Chude

Reputation: 3810

You can also set the text size with the dp and sp units like this:

android:textSize="10sp"

Upvotes: 13

Related Questions