很多場景都有會用到EditText,用來接收用戶輸入的一些信息拘央,當EditText是密碼輸入類型的時候疚俱,用戶輸入的信息都會被系統(tǒng)用原點給代替,保證其他人無法看見輸入信息博敬,但是有些時候我們自己也想看看自己輸入的內容是否正確友浸,那應該怎么樣呢?
EditText可以通過setTransformationMethod設置不同的值可以顯示和隱藏文本內容偏窝。
顯示為明文
setTransformationMethod(HideReturnsTransformationMethod.getInstance());
顯示為密文
setTransformationMethod(PasswordTransformationMethod.getInstance());
今天這里就是把這些小東西直接封裝成一個自定義的EditText收恢,可以直接使用。
package 你的包名;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.support.v4.content.ContextCompat;
import android.text.Editable;
import android.text.Selection;
import android.text.Spannable;
import android.text.TextWatcher;
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnFocusChangeListener;
import android.view.animation.Animation;
import android.view.animation.CycleInterpolator;
import android.view.animation.TranslateAnimation;
import android.widget.EditText;
import com.megawave.android.R;
public class PasswordToggleEditText extends EditText implements
OnFocusChangeListener, TextWatcher {
/**
* 眼睛按鈕
*/
private Drawable mToggleDrawable;
public PasswordToggleEditText(Context context) {
this(context, null);
}
public PasswordToggleEditText(Context context, AttributeSet attrs) {
this(context, attrs, android.R.attr.editTextStyle);
}
public PasswordToggleEditText(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
/**
* 初始化右邊小眼睛的控件
*/
private void init() {
//獲取EditText的DrawableRight,主要是通過xml或者外部設置右邊的按鈕祭往,如果沒有設置就采用默認的
mToggleDrawable = getCompoundDrawables()[2];
if (mToggleDrawable == null) {
mToggleDrawable = ContextCompat.getDrawable(getContext(),R.drawable.icon_toggle);
}
mToggleDrawable.setBounds(0, 0, mToggleDrawable.getIntrinsicWidth(), mToggleDrawable.getIntrinsicHeight());
setToggleIconVisible(false);
setOnFocusChangeListener(this);
addTextChangedListener(this);
}
/**
* 因為我們不能直接給EditText設置點擊事件伦意,所以我們用記住我們按下的位置來模擬點擊事件
* 當我們按下的位置 在 EditText的寬度 - 圖標到控件右邊的間距 - 圖標的寬度 和
* EditText的寬度 - 圖標到控件右邊的間距之間我們就算點擊了圖標,豎直方向沒有考慮
*/
@Override
public boolean onTouchEvent(MotionEvent event) {
if (getCompoundDrawables()[2] != null) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
boolean touchable = event.getX() > (getWidth()
- getPaddingRight() - mToggleDrawable.getIntrinsicWidth())
&& (event.getX() < ((getWidth() - getPaddingRight())));
if (touchable) {
//顯示密碼明文
setTransformationMethod(HideReturnsTransformationMethod.getInstance());
postInvalidate();
CharSequence charSequence = getText();
//為了保證體驗效果硼补,需要保持輸入焦點在文本最后一位
if (charSequence != null) {
Spannable spanText = (Spannable) charSequence;
Selection.setSelection(spanText, charSequence.length());
}
}
}else if(event.getAction() == MotionEvent.ACTION_UP){
//隱藏密碼明文
setTransformationMethod(PasswordTransformationMethod.getInstance());
postInvalidate();
setSelection(getText().length());
}
}
return super.onTouchEvent(event);
}
/**
* 當EditText焦點發(fā)生變化的時候驮肉,判斷里面字符串長度設置清除圖標的顯示與隱藏
*/
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
setToggleIconVisible(getText().length() > 0);
} else {
setToggleIconVisible(false);
setShakeAnimation();
}
}
/**
* 設置清除圖標的顯示與隱藏,調用setCompoundDrawables為EditText繪制上去
* @param visible
*/
public void setToggleIconVisible(boolean visible) {
Drawable right = visible ? mToggleDrawable : null;
setCompoundDrawables(getCompoundDrawables()[0],
getCompoundDrawables()[1], right, getCompoundDrawables()[3]);
}
/**
* 當輸入框里面內容發(fā)生變化的時候回調的方法
*/
@Override
public void onTextChanged(CharSequence s, int start, int count,
int after) {
setToggleIconVisible(s.length() > 0);
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
@Override
public void afterTextChanged(Editable s) {
}
/**
* 設置晃動動畫
*/
public void setShakeAnimation(){
this.setAnimation(shakeAnimation(3));
}
/**
* 晃動動畫
* @param counts 1秒鐘晃動多少下
* @return
*/
public Animation shakeAnimation(int counts){
Animation translateAnimation = new TranslateAnimation(0, 10, 0, 0);
translateAnimation.setInterpolator(new CycleInterpolator(counts));
translateAnimation.setDuration(500);
return translateAnimation;
}
}
需要用到的素材:
我們都知道EditText可以設置上下左右的圖片(如果你不知道括勺,那現(xiàn)在就知道了)缆八,其實這里我也是把小眼睛設置到EditText的右邊,然后自己實現(xiàn)onTouchEvent來監(jiān)聽當前手按下的位置是不是按中了小眼睛疾捍,如果是就顯示密碼奈辰,手離開就隱藏密碼。