Android: How To Change To Text Size In Listview Become Bigger?
I am blurred with the situation below where I create a LinearLayout to display contact list from my phone. But, I can't figout out where I can actually set the text inside LinearLa
Solution 1:
Set this property android:textSize="10dip"
of Textview into contact_entry.xml, it will solve your problem.
Solution 2:
it is always better to set the size of text in sp (Sp is scaled independently with respect to the normal font size of the device. ) or you can use android:textAppearance="?android:attr/textAppearanceLarge
Post a Comment for "Android: How To Change To Text Size In Listview Become Bigger?"