Reputation: 110630
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
Reputation: 3810
You can also set the text size with the dp
and sp
units like this:
android:textSize="10sp"
Upvotes: 13