首页 > 系统 > Android > 正文

Android手机号码输入框(满11位自动跳到下个输入框)实例代码

2019-10-22 18:24:28
字体:
来源:转载
供稿:网友

废话不多说了,直接给大家贴代码了,具体代码如下所示:

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手机号码输入框(满11位自动跳到下个输入框)实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VEVB武林网网站的支持!


注:相关教程知识阅读请移步到Android开发频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表