android自定义view_带删除按钮的edittext

github地址:
https://github.com/153437803/EditClearText
public class EditClearText extends AppCompatEditText implements View.OnFocusChangeListener, TextWatcher {

    // 左侧提图片资源ID(仅仅是个图标,没有实际意义)
    private int leftIcon;
    // 左侧删除图片(宽度)
    private float leftIconWidth;
    // 左侧删除图片(高度)
    private float leftIconHeight;
    // 左侧删除图片
    private Drawable leftDrawable;
    // 右侧删除图片资源ID(默认状态,获取焦点,内容不为空时,显示图片)
    private int rightIcon;
    // 右侧删除图片资源ID(按下状态)
    private int rightIconPressed;
    // 右侧删除图片(默认状态,按下状态)
    private Drawable rightDrawable;
    // 右侧删除图片(宽度)
    private float rightIconWidth;
    // 右侧删除图片(高度)
    private float rightIconHeight;
    // 背景颜色
    private int backgroundColor;
    // 背景圆角
    private float backgroundCorners;
    // 背景边框颜色
    private int backgroundStoreColor;
    // 背景边框宽度
    private float backgroundStoreSize;
    // 空字符串
    private final String NULL = "";

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

    public EditClearText(Context context, AttributeSet attrs) {
        this(context, attrs, android.R.attr.editTextStyle);
    }

    public EditClearText(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);

        // 单行输入
        setSingleLine();

        TypedArray typedArray = null;

        try {

            final float scale = context.getResources().getDisplayMetrics().density;
            float defaultIconSize = 20 * scale + 0.5f;

            //获取自定义属性。
            typedArray = context.obtainStyledAttributes(attrs, R.styleable.EditClearText, defStyleAttr, 0);

            leftIcon = typedArray.getResourceId(R.styleable.EditClearText_ect_icon_left, -1);
            leftIconWidth = typedArray.getDimension(R.styleable.EditClearText_ect_icon_left_width, defaultIconSize);
            leftIconHeight = typedArray.getDimension(R.styleable.EditClearText_ect_icon_left_height, defaultIconSize);

            //左边按钮的大小dp
            rightIconWidth = typedArray.getDimension(R.styleable.EditClearText_ect_icon_right_width, defaultIconSize);
            rightIconHeight = typedArray.getDimension(R.styleable.EditClearText_ect_icon_right_height, defaultIconSize);
            // 删除按钮
            rightIcon = typedArray.getResourceId(R.styleable.EditClearText_ect_icon_right, -1);
            rightIconPressed = typedArray.getResourceId(R.styleable.EditClearText_ect_icon_right_pressed, -1);
            // 背景颜色
            backgroundColor = typedArray.getColor(R.styleable.EditClearText_ect_background_color, Color.TRANSPARENT);
            // 背景边框颜色
            backgroundStoreColor = typedArray.getColor(R.styleable.EditClearText_ect_background_store_color, Color.TRANSPARENT);
            // 背景圆角
            backgroundCorners = typedArray.getDimension(R.styleable.EditClearText_ect_background_corners, 0);
            // 背景边框宽度
            backgroundStoreSize = typedArray.getDimension(R.styleable.EditClearText_ect_background_store_size, 0);
        } catch (Exception e) {
        } finally {

            if (null != typedArray) {
                typedArray.recycle();
            }
        }

        // 设置对其方式:center_vertical
        // setGravity(Gravity.CENTER_VERTICAL);

        //设置监听
        this.setOnFocusChangeListener(this);
        this.addTextChangedListener(this);
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();

        if (leftIcon != -1) {
            leftDrawable = getResources().getDrawable(leftIcon);
            leftDrawable.setBounds(0, 0, (int) leftIconWidth, (int) leftIconHeight);
        }

        //右侧图标
        if (rightIcon != -1) {

            // 存在按下状态
            if (rightIconPressed != -1) {

                Drawable drawable1 = getResources().getDrawable(rightIcon);
                Drawable drawable2 = getResources().getDrawable(rightIconPressed);

                rightDrawable = new StateListDrawable();
                ((StateListDrawable) rightDrawable).addState(new int[]{-android.R.attr.state_pressed}, drawable1);
                ((StateListDrawable) rightDrawable).addState(new int[]{android.R.attr.state_pressed}, drawable2);
                rightDrawable.setBounds(0, 0, (int) rightIconWidth, (int) rightIconHeight);
            }
            // 没有按压状态
            else {
                rightDrawable = getResources().getDrawable(rightIcon);
                rightDrawable.setBounds(0, 0, (int) rightIconWidth, (int) rightIconHeight);
            }
        }
    }

    @Override
    protected void onDraw(Canvas canvas) {

        // 圆角矩形背景
        GradientDrawable bg = new GradientDrawable();
        bg.setCornerRadius(backgroundCorners);
        bg.setColor(backgroundColor);
        bg.setSize(getWidth(), getHeight());
        bg.setStroke((int) backgroundStoreSize, backgroundStoreColor);
        setBackgroundDrawable(bg);

        super.onDraw(canvas);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        //可以获得上下左右四个drawable,右侧排第二。图标没有设置则为空。
        Drawable rightIcon = getCompoundDrawables()[2];
        if (rightIcon != null && event.getAction() == MotionEvent.ACTION_UP) {
            //检查点击的位置是否是右侧的删除图标
            //注意,使用getRwwX()是获取相对屏幕的位置,getX()可能获取相对父组件的位置
            int leftEdgeOfRightDrawable = getRight() - getPaddingRight() - rightIcon.getBounds().width();
            if (event.getRawX() >= leftEdgeOfRightDrawable) {
                setText(NULL);
            }
        }
        return super.onTouchEvent(event);
    }

    @Override
    public void onFocusChange(View view, boolean b) {

        if (length() > 0 && hasFocus()) {
            setCompoundDrawables(leftDrawable, null, rightDrawable, null);
        } else {
            setCompoundDrawables(leftDrawable, null, null, null);
        }
    }

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
    }

    @Override
    public void afterTextChanged(Editable s) {

        if (length() > 0 && hasFocus()) {
            setCompoundDrawables(leftDrawable, null, rightDrawable, null);
        } else {
            setCompoundDrawables(leftDrawable, null, null, null);
        }
    }

    @Override
    public void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
        super.onTextChanged(text, start, lengthBefore, lengthAfter);
    }

    @Override
    protected void onDetachedFromWindow() {

        // 移除监听
        this.removeTextChangedListener(this);
        this.addTextChangedListener(null);
        this.setOnFocusChangeListener(null);
        // 释放资源
        rightDrawable = null;
        leftDrawable = null;

        super.onDetachedFromWindow();
    }

    @Override
    protected void onVisibilityChanged(View changedView, int visibility) {

        if (visibility != VISIBLE) {
            // 移除监听
            this.removeTextChangedListener(this);
            this.addTextChangedListener(null);
            this.setOnFocusChangeListener(null);
            // 释放资源
            rightDrawable = null;
            leftDrawable = null;
        }

        super.onVisibilityChanged(changedView, visibility);
    }

    @Override
    public void onFinishTemporaryDetach() {

        // 移除监听
        this.removeTextChangedListener(this);
        this.addTextChangedListener(null);
        this.setOnFocusChangeListener(null);
        // 释放资源
        rightDrawable = null;
        leftDrawable = null;

        super.onFinishTemporaryDetach();
    }
}
 <declare-styleable name="EditClearText">
        <!-- 左边图片 -->
        <attr name="ect_icon_left" format="reference" />
        <!-- 左边图片宽度 -->
        <attr name="ect_icon_left_width" format="reference|dimension" />
        <!-- 左边图片高度 -->
        <attr name="ect_icon_left_height" format="reference|dimension" />
        <!-- 右侧图片 -->
        <attr name="ect_icon_right" format="reference" />
        <!-- 右侧图片按压状态 -->
        <attr name="ect_icon_right_pressed" format="reference" />
        <!-- 右侧图片宽度 -->
        <attr name="ect_icon_right_width" format="reference|dimension" />
        <!-- 右侧图片高度 -->
        <attr name="ect_icon_right_height" format="reference|dimension" />
        <!-- 光标颜色 -->
        <attr name="ect_cursor_color" format="reference|color" />
        <!-- 背景颜色 -->
        <attr name="ect_background_color" format="reference|color" />
        <!-- 背景圆角 -->
        <attr name="ect_background_corners" format="reference|dimension" />
        <!-- 背景边框颜色 -->
        <attr name="ect_background_store_color" format="reference|color" />
        <!-- 背景边框宽度 -->
        <attr name="ect_background_store_size" format="reference|dimension" />
    </declare-styleable>
<com.demo.edittext.EditClearText
        android:id="@+id/et_input"
        android:layout_width="match_parent"
        android:layout_height="@dimen/d32"
        android:background="@null"
        android:hint="请输入商品名称"
        android:minHeight="@dimen/d32"
        android:paddingLeft="@dimen/d14"
        android:paddingRight="@dimen/d14"
        android:textColor="#ffffff"
        android:textSize="@dimen/s13"
        android:drawablePadding="2dp"
        android:textColorHint="@android:color/darker_gray"
        app:ect_background_color="@android:color/holo_blue_dark"
        app:ect_background_corners="@dimen/d45"
        app:ect_icon_left="@drawable/icon_user"
        app:ect_icon_right="@drawable/icon_clear"
        app:ect_icon_right_pressed="@drawable/icon_user"
        app:ect_background_store_color="@android:color/black"
        app:ect_background_store_size="@dimen/d2"/>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,542评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,596评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,021评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,682评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,792评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,985评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,107评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,845评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,299评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,612评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,747评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,441评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,072评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,828评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,069评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,545评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,658评论 2 350

推荐阅读更多精彩内容