您的位置:首页 > 移动开发 > Android开发

android自定义view_ClearEditText带清空按钮的输入框

2017-12-19 19:16 399 查看
创建一个类继承EditText

import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.EditText;

import com.example.ztz.android_timer.R;

/**
* Created by ztz on 2017/12/19.
* 自定义view_ClearEditText
*/

@SuppressLint("AppCompatCustomView")
public class ClearEditText extends EditText implements View.OnFocusChangeListener, TextWatcher {
private Drawable mClearDrawable;
private boolean hasFocus;

public ClearEditText(Context context) {
super(context);
}

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

public ClearEditText(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init() {
// getCompoundDrawables() Returns drawables for the left(0), top(1), right(2) and bottom(3)
mClearDrawable =
ba02
getCompoundDrawables()[2]; // 获取drawableRight
if (mClearDrawable == null) {
// 如果为空,即没有设置drawableRight,则使用R.drawable.close这张图片
mClearDrawable = getResources().getDrawable(R.drawable.close);
}
mClearDrawable.setBounds(0, 0, mClearDrawable.getIntrinsicWidth(), mClearDrawable.getIntrinsicHeight());
setOnFocusChangeListener(this);
addTextChangedListener(this);
// 默认隐藏图标
setDrawableVisible(false);
}

/**
* 我们无法直接给EditText设置点击事件,只能通过按下的位置来模拟clear点击事件
* 当我们按下的位置在图标包括图标到控件右边的间距范围内均算有效
*/
@Override
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_UP) {
if (getCompoundDrawables()[2] != null) {
// 起始位置
int start = getWidth() - getTotalPaddingRight() + getPaddingRight();
// 结束位置
int end = getWidth();
boolean available = (event.getX() > start) && (event.getX() < end);
if (available) {
this.setText("");
}
}
}
return super.onTouchEvent(event);
}

@Override
public void onFocusChange(View v, boolean hasFocus) {
this.hasFocus = hasFocus;
// 当输入文字时,显示图标
if (hasFocus && getText().length() > 0) {
setDrawableVisible(true);
} else {
setDrawableVisible(false);
}
}

@Override
public void onTextChanged(CharSequence s, int start, int count, int after) {
if (hasFocus) {
setDrawableVisible(s.length() > 0);
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}

@Override
public void afterTextChanged(Editable s) {
}
protected void setDrawableVisible(boolean visible) {
Drawable right = visible ? mClearDrawable : null;
setCompoundDrawables(getCompoundDrawables()[0], getCompoundDrawables()[1], right, getCompoundDrawables()[3]);
}

}

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: