android开发:自定义view之组合控件

本文介绍如何在Android开发中实现自定义view,通过组合TextView和ImageView来创建一个新的条目item视图。首先在attr文件声明自定义属性,接着定义view的XML布局,最后在Activity布局中使用这个自定义view。示例中提到,图标可以从阿里巴巴矢量图标库获取。
摘要由CSDN通过智能技术生成

日常生活中我们使用微信、QQ、微博等都会看到很多条目item,效果如下:

其实它是通过组合控件将textView和ImgView组合起来作为一个新的view:

1.在value文件夹下的attr文件加入我们自定义的属性声明

   <declare-styleable name="MenuItemView">
        <!--布局中左边的icon-->
        <attr name="leftIcon" format="reference"/>
        <!--布局中右边的icon-->
        <attr name="rightIcon" format="reference"/>
        <!--布局中的文字-->
        <attr name="text"/>
        <!--文字的大小-->
        <attr name="textSize"/>
        <!--文字的颜色-->
        <attr name="leftTextColor" format="color"/>
        <attr name="rightTextColor" format="color"/>
    </declare-styleable>

2.自定义我们的view


public class MenuItemView extends RelativeLayout {

    ImageView iconLeft;
    ImageView iconRight;
    TextView menuTextLeft;

    public MenuItemView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs);
    }

    public MenuItemView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context, attrs);
    }

    private void init(Context context, AttributeSet attrs) {
        inflate(context, R.layout.menuitem_layout, this);

     
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值