您好,登录后才能下订单哦!
1.首先创建一个类继承View或者是View的子类,根据你需要的类型进创建。
2.添加一个带两个参数的构造方法。
3. 定义自定义控件属性。如:
参照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>
4.然后在构造方法中读出你需要的内容如:
TypedArray ta = context.obtainStyledAttributes(
attrs, R.styleable.VerticalTextView);
mContent = ta.getString(
R.styleable.VerticalTextView_content);
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。