在textview中设置textcolor和其他属性

时间:2014-03-24 10:12:26

标签: android

如何在下面的课程中设置文字颜色和文字大小

public class MyTextView extends TextView {
    public MyTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init();
    }
    public MyTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }
    public MyTextView(Context context) {
        super(context);
        init();
    }
    public void init() {
        Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font/chiller.ttf");
        setTypeface(tf ,1);
    }
    }

1 个答案:

答案 0 :(得分:2)

init使用setTextColorsetTextSize

  public void init() {
    Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font/chiller.ttf");
    setTypeface(tf ,1);
    this.setTextColor(Color.RED);
    this.setTextSize(20f);
} 

如果您要查找自定义属性,请检查此

Setting color of a Paint object in custom view