Android TextView 用法小结

突然想总结一下了,慢慢总结中(未完待续)...

TextView中 自己加粗方法

代码中:

textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));//加粗

textView.getPaint().setFakeBoldText(true);//加粗

xml布局中:

android:textStyle=”bold”//加粗

TextView中设置文本的最大显示行数,与width或者layout_width结合使用,超出部分自动换行,超出行数将不显示。  

xml布局中:

android:maxLines="3"

TextView中 省略号

android:ellipsize="end" 

android:singleLine="true"实现单行省略,

android:lines="3"   

 android:ellipsize="end" 实现多行省略

 但是当我们需要控制不是正行时需要通过 指定最大宽度实现自动省略 android:maxWidth="90dp"

代码中,设置字体大小:

  1. textView.setTextSize(TypedValue.COMPLEX_UNIT_PX,45); //设置45PX   
  2.   
  3. textView.setTextSize(TypedValue.COMPLEX_UNIT_SP,45); //设置45SP   
  4.   
  5. textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP,45);//设置45DIP  

你可能感兴趣的:(Android基础)