Android 自定义控件——上传图片及预览(一)

Android 自定义控件——上传图片及预览(一)_第1张图片 效果图

 

1.用到的第三方库: 

//知乎 图片视频选择 
implementation 'com.zhihu.android:matisse:0.5.2-beta4'

 2.自定义组合控件


    

    
    

 


import android.content.Context;
import android.content.res.TypedArray;
import android.text.TextUtils;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;

import androidx.annotation.Nullable;


/**
 * @author: 何处可安生
 * @date: 2020/5/18
 */
public class MyImgLinearLayout extends LinearLayout {
    private TextView textView_title,textView_upload,textView_yl;
    private ImgListener imgListener;
    private View view;
    public MyImgLinearLayout(Context context) {
        super(context);
    }

    public MyImgLinearLayout(final Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);

        view=LayoutInflater.from(context).inflate(R.layout.my_imglayout, this, true);
        textView_title=findViewById(R.id.imglayout_title);
        textView_upload=findViewById(R.id.imglayout_upload);
        textView_yl=findViewById(R.id.imglayout_yl);
        
        TypedArray attributes = context.obtainStyledAttributes(attrs, R.styleable.MyImgLinearLayout);
        if (attributes != null) {
            String title = attributes.getString(R.styleable.MyImgLinearLayout_my_title);
            if (!TextUtils.isEmpty(title)) {
                textView_title.setText(title);
            }
            attributes.recycle();
        }
         /**
         * 上传图片的点击事件
         */
        textView_upload.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                if (imgListener != null) {
                    imgListener.onUploadListener(view);
                }
            }
        });
        /**
         * 预览的点击事件
         */
        textView_yl.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                if (imgListener!=null){
                    imgListener.onYlImgListener(view);
                }
            }
        });
    }
    public  interface ImgListener{
        /**
         *  添加图片
         */
        void onUploadListener(View v);

        /**
         * 预览图片
         */

        void onYlImgListener(View v);
    }

    public void setUploadClickListener(ImgListener imgListener) {
            this.imgListener=imgListener;
    }
}

 Activity中使用: 

       

       
        

 

     yscheckSfzrx.setUploadClickListener(new MyImgLinearLayout.ImgListener() {
            @Override
            public void onUploadListener(View v) {
                //上传图片
            }

            @Override
            public void onYlImgListener(View v) {
                //预览图片
            }
        });

 

你可能感兴趣的:(2020)