在程序里设置style或者配置属性attr.xml,
比如apidemo里面LabelView
TypedArray a = context.obtainStyledAttributes(attrs,
                R.styleable.LabelView);        CharSequence s = a.getString(R.styleable.LabelView_text);
        if (s != null) {
            setText(s.toString());
        }        setTextColor(a.getColor(R.styleable.LabelView_textColor, 0xFF000000));        int textSize = a.getDimensionPixelOffset(R.styleable.LabelView_textSize, 0);
        if (textSize > 0) {
            setTextSize(textSize);
        }