Android自定义ViewGroup ,动态添加数目不确定的ImageView

本文介绍如何在Android开发中通过自定义ViewGroup动态添加数目不确定的ImageView,以避免布局文件中的重复代码。内容包括自定义ViewGroup的实现步骤、相关属性配置以及在MainActivity中设置数据并显示的方法。
摘要由CSDN通过智能技术生成

开发中遇到这样的需求,在页面中显示数量不确定的图片。如果不用自定义ViewGroup的话,只能在layout中一个一个的添加ImageView。这样做显然是不合适的,而且会有相当多的重复代码。面对这样的需求,我们可以通过自定义ViewGroup来解决。

自定义的ViewGroup:

/**
 * Created by Answer on 2017/10/24.
 */

public class ImagesViewGroup extends ViewGroup {
    private int maringTop = 12;
    private List<ImageInfo> imageInfoList;
    private Context context;
    private ClickListener clickListener;

    public ImagesViewGroup(Context context) {
        this(context, null);
    }

    public ImagesViewGroup(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public ImagesViewGroup(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        this.context = context;

        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ImagesViewGroup);
        maringTop = (int) a.getDimension(R.styleable.ImagesViewGroup_ivg_marginTop, 12);
        DisplayMetrics dm = context.getResources().getDisplayMetrics();
        maringTop = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, maringTop, dm);
        a.recycle();
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSp
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值