中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中如何通過自定義EditText實現清除和抖動功能

發布時間:2022-04-11 15:49:06 來源:億速云 閱讀:246 作者:iii 欄目:編程語言

這篇文章主要介紹“Android中如何通過自定義EditText實現清除和抖動功能”,在日常操作中,相信很多人在Android中如何通過自定義EditText實現清除和抖動功能問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Android中如何通過自定義EditText實現清除和抖動功能”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

源碼如下:

public class ClearEditText extends EditText implements View.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,假如沒有設置我們就使用默認的圖片,2是獲得右邊的圖片 順序是左上右下(0,1,2,3,) 
  mClearDrawable = getCompoundDrawables()[2]; 
  if (mClearDrawable == null) { 
   // throw new 
   // NullPointerException("You can add drawableRight attribute in XML"); 
   mClearDrawable = getResources().getDrawable(R.drawable.icon_clear_input); 
  } 
 
  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.startAnimation(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(500); 
  return translateAnimation; 
 } 
 
}

使用方法同普通的EditText:

<com.example.clearedittext.ClearEditText  
    android:id="@+id/username"  
    android:layout_marginTop="60dp"  
    android:layout_width="fill_parent"  
    android:background="@drawable/login_edittext_bg"   
    android:drawableLeft="@drawable/icon_user"  
    android:layout_marginLeft="10dip"  
    android:layout_marginRight="10dip"  
    android:singleLine="true"  
    android:drawableRight="@drawable/delete_selector"  
    android:hint="輸入用戶名"  
    android:layout_height="wrap_content" />

到此,關于“Android中如何通過自定義EditText實現清除和抖動功能”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扎赉特旗| 凤翔县| 留坝县| 华安县| 农安县| 上杭县| 突泉县| 天水市| 富蕴县| 霞浦县| 乌苏市| 乌审旗| 石门县| 景宁| 朔州市| 安仁县| 灵台县| 湛江市| 尚义县| 扬州市| 高青县| 婺源县| 洛阳市| 泗水县| 肥东县| 孝义市| 南昌县| 阿巴嘎旗| 阜康市| 安多县| 新乡市| 抚松县| 平谷区| 黔江区| 武夷山市| 屏东县| 江北区| 同江市| 元阳县| 乐平市| 西昌市|