1. 程式人生 > >Android帶清除功能的編輯框(ClearEditText)

Android帶清除功能的編輯框(ClearEditText)

在Android開發中,EditText控制元件是最基本的控制元件之一。最近按照專案需求要求做一個EditText控制元件,帶有清空功能的控制元件,比如在登入頁面,帳號和密碼輸入框中,輸入後發現錯誤,需要一個一個刪除,這時候新增一個清除功能的按鈕圖示就很有必要了。好了,功能描述就到這裡,下面開始貼效果圖和程式碼(在小編眼裡,程式碼比描述要有用的多):


效果圖如上,接下來我們看程式碼:

首先新建一個java檔案繼承EditText,小編新建的是ClearEditText.java

package com.text.view;

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.view.View.OnFocusChangeListener;
import android.view.animation.Animation;
import android.view.animation.CycleInterpolator;
import android.view.animation.TranslateAnimation;
import android.widget.EditText;

public class ClearEditText extends EditText implements
        OnFocusChangeListener, TextWatcher {
    /**
     * 刪除按鈕的引用
     */
    private Drawable mClearDrawable;
    /**
     * 控制元件是否有焦點
     */
    private boolean hasFoucs;

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

    public ClearEditText(Context context, AttributeSet attrs) {
        //這裡構造方法也很重要,不加這個很多屬性不能再XML裡面定義
        this(context, attrs, android.R.attr.editTextStyle);
    }

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


    private void init() {
        //獲取EditText的DrawableRight,假如沒有設定我們就使用預設的圖片
        mClearDrawable = getCompoundDrawables()[2];
        if (mClearDrawable == null) {
//        	throw new NullPointerException("You can add drawableRight attribute in XML");
            mClearDrawable = getResources().getDrawable(R.drawable.delete_selector);
        }

        mClearDrawable.setBounds(0, 0, mClearDrawable.getIntrinsicWidth(), mClearDrawable.getIntrinsicHeight());
        //預設設定隱藏圖示
        setClearIconVisible(false);
        //設定焦點改變的監聽
        setOnFocusChangeListener(this);
        //設定輸入框裡面內容發生改變的監聽
        addTextChangedListener(this);
    }


    /**
     * 因為我們不能直接給EditText設定點選事件,所以我們用記住我們按下的位置來模擬點選事件
     * 當我們按下的位置 在  EditText的寬度 - 圖示到控制元件右邊的間距 - 圖示的寬度  和
     * EditText的寬度 - 圖示到控制元件右邊的間距之間我們就算點選了圖示,豎直方向就沒有考慮
     */
    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_UP) {
            if (getCompoundDrawables()[2] != null) {

                boolean touchable = event.getX() > (getWidth() - getTotalPaddingRight())
                        && (event.getX() < ((getWidth() - getPaddingRight())));

                if (touchable) {
                    this.setText("");
                }
            }
        }

        return super.onTouchEvent(event);
    }

    /**
     * 當ClearEditText焦點發生變化的時候,判斷裡面字串長度設定清除圖示的顯示與隱藏
     */
    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        this.hasFoucs = hasFocus;
        if (hasFocus) {
            setClearIconVisible(getText().length() > 0);
        } else {
            setClearIconVisible(false);
        }
    }


    /**
     * 設定清除圖示的顯示與隱藏,呼叫setCompoundDrawables為EditText繪製上去
     * @param visible
     */
    protected void setClearIconVisible(boolean visible) {
        Drawable right = visible ? mClearDrawable : null;
        setCompoundDrawables(getCompoundDrawables()[0],
                getCompoundDrawables()[1], right, getCompoundDrawables()[3]);
    }


    /**
     * 當輸入框裡面內容發生變化的時候回撥的方法
     */
    @Override
    public void onTextChanged(CharSequence s, int start, int count,
                              int after) {
        if(hasFoucs){
            setClearIconVisible(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(5));
    }

    /**
     * 晃動動畫
     * @param counts 1秒鐘晃動多少下
     * @return
     */
    public static Animation shakeAnimation(int counts){
        Animation translateAnimation = new TranslateAnimation(0, 10, 0, 0);
        translateAnimation.setInterpolator(new CycleInterpolator(counts));
        translateAnimation.setDuration(1000);
        return translateAnimation;
    }


}

在XML檔案中使用:
 <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_marginTop="30dp"
            android:background="@android:color/white"
            android:gravity="center_vertical"
            android:orientation="horizontal" >

            <ImageView
                android:layout_width="22dp"
                android:layout_height="22dp"
                android:layout_marginLeft="15dp"
                android:background="@drawable/id_icon" />

            <com.test.view.ClearEditText
                android:id="@+id/et_phone_number"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="15dp"
                android:layout_marginRight="15dp"
                android:background="@null"
                android:hint="請輸入您的手機號"
                android:inputType="phone"
                android:textColorHint="@color/app_hint_text_color"
                android:textSize="@dimen/submit_font" />
        </LinearLayout>

到這裡就完成了,程式碼在上面大家自己可以多琢磨琢磨,這也是參照別人改寫的,希望大家多多吐槽,共同進步