Change font size in ListView - Android/Eclipse

前端 未结 6 796
鱼传尺愫
鱼传尺愫 2020-12-13 20:28

How can I change the font size in a ListView element? In my main.xml file, I have tried several different values in for android:textSize (pt,px,sp,dp) and nothing seems to c

6条回答
  •  爱一瞬间的悲伤
    2020-12-13 21:09

    2 ways to go:

    1. Copy simple_list_item_1.xml from Android sources, modify it and then use it instead of android.R.layout.simple_list_item_1;
    2. Use BaseAdapter and modify font size in getView(..) call.

    I'd suggest you go with latter.

提交回复
热议问题