温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何实现Android手机号码输入框

发布时间:2021-07-20 14:59:46 来源:亿速云 阅读:158 作者:小新 栏目:移动开发

这篇文章给大家分享的是有关如何实现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