亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何實現Android手機號碼輸入框

發布時間:2021-07-20 14:59:46 來源:億速云 閱讀:170 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關如何實現Android手機號碼輸入框的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

具體代碼如下所示:

package com.jixiong.teen.view;
import android.content.Context;
import android.text.Editable;
import android.text.Selection;
import android.text.TextWatcher;
import android.util.AttributeSet;
import android.widget.EditText;
/**
 * Created by christy on 16/12/22.
 */
public class MoblieEditText extends EditText {
  public MoblieEditText(Context context) {
    super(context);
    this.addTextChangedListener(new MoblieWatcher());
  }
  public MoblieEditText(Context context, AttributeSet attrs) {
    super(context, attrs);
    this.addTextChangedListener(new MoblieWatcher());
  }
  public MoblieEditText(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    this.addTextChangedListener(new MoblieWatcher());
  }
  class MoblieWatcher implements TextWatcher {
    int beforeTextLength = 0;
    int onTextLength = 0;
    boolean isChanged = false;
    int location = 0;// 記錄光標的位置
    private char[] tempChar;
    private final StringBuffer buffer = new StringBuffer();
    int konggeNumberB = 0;
    @Override
    public void beforeTextChanged(CharSequence s, int start, int count,
                   int after) {
      beforeTextLength = s.length();
      if (buffer.length() > 0) {
        buffer.delete(0, buffer.length());
      }
      konggeNumberB = 0;
      for (int i = 0; i < s.length(); i++) {
        if (s.charAt(i) == ' ') {
          konggeNumberB++;
        }
      }
    }
    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {
      onTextLength = s.length();
      buffer.append(s.toString());
      if (onTextLength == beforeTextLength || onTextLength <= 3 || isChanged) {
        isChanged = false;
        return;
      }
      isChanged = true;
    }
    @Override
    public void afterTextChanged(Editable s) {
      if (isChanged) {
        location = getSelectionEnd();
        int index = 0;
        while (index < buffer.length()) {
          if (buffer.charAt(index) == ' ') {
            buffer.deleteCharAt(index);
          } else {
            index++;
          }
        }
        index = 0;
        int konggeNumberC = 0;
        while (index < buffer.length()) {
          if ((index == 3 || index == 8)) {
            buffer.insert(index, ' ');
            konggeNumberC++;
          }
          index++;
        }
        if (konggeNumberC > konggeNumberB) {
          location += (konggeNumberC - konggeNumberB);
        }
        tempChar = new char[buffer.length()];
        buffer.getChars(0, buffer.length(), tempChar, 0);
        String str = buffer.toString();
        if (location > str.length()) {
          location = str.length();
        } else if (location < 0) {
          location = 0;
        }
        setText(str);
        Editable etable = getText();
        Selection.setSelection(etable, location);
        isChanged = false;
      }
    }
  }
}

使用;;

直接在布局中引用

<com.jixiong.teen.view.MoblieEditText
  android:id="@+id/etUserNums"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:background="@null"
  android:hint="@string/user_name"
  android:inputType="number"
  android:maxLines="1"
  android:paddingLeft="@dimen/margin_twenty"
  android:singleLine="true"
  android:textColorHint="@color/hint_color"
  android:textSize="@dimen/sp_14" />

然后再activity中初始化

etUserNums.addTextChangedListener(new TeenEmptyWatcher() {
  @Override
  public void onTextChanged(CharSequence s, int start, int before, int count) {
  }
  @Override
  public void afterTextChanged(Editable s) {
    if (s != null && s.length() == 13) {
      if (etUserNums.isFocused()) {
        etUserNums.clearFocus();
        etUserPwd.requestFocus();
      }
    }
  }
});

感謝各位的閱讀!關于“如何實現Android手機號碼輸入框”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

南丹县| 四平市| 阿克陶县| 同江市| 鲁山县| 日照市| 庄河市| 竹山县| 七台河市| 苍梧县| 阳东县| 威信县| 泸州市| 海淀区| 兴化市| 长岭县| 永平县| 东海县| 巩义市| 报价| 米易县| 星子县| 和平区| 安阳市| 新田县| 定远县| 安龙县| 高雄县| 兰考县| 麻城市| 新密市| 静海县| 凤山县| 金华市| 涟源市| 东兴市| 图木舒克市| 双牌县| 嘉兴市| 乌兰县| 景谷|