04_Android TextView 相关

  1. TextView 添加下划线
// 设置 TextView 的 Paint 属性-下划线
textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);
  1. 设置 TextView 的文本内容预览,但在项目运行中不显示
 
    

3.设置 Textview 行高和字间距
android:textScaleX设置的值为 float 类型。
android:lineSpacingExtra设置行间距,如 2dp。
android:lineSpacingMultiplier设置行间距的倍数。

4.在代码中动态设置 TextView 的 drawable(left, top, right, bottom)

// 获取图片资源
Drawable drawableLeft = getResources().getDrawable(  
        R.drawable.ic_launcher); 
// 设置图片位置
textDrawable.setCompoundDrawablesWithIntrinsicBounds(drawableLeft,  
        null, null, null);  
// 设置图片与文字间距
textDrawable.setCompoundDrawablePadding(4); 

你可能感兴趣的:(04_Android TextView 相关)