1.首先创建一个类继承View或者是View的子类,根据你需要的类型进创建。
参照ApiDemos\res\values\attrs.xml定义属性
<declare-styleable name="VerticalTextView">
<attr name="content" format="string|reference" />
<attr name="contentColor" format="color|reference" />
<attr name="contentSize" format="dimension|reference" />
</declare-styleable>
TypedArray ta = context.obtainStyledAttributes(
attrs,R.styleable.VerticalTextView);
mContent = ta.getString(
R.styleable.VerticalTextView_content);
原文链接:https://www.f2er.com/xml/298950.html