Android中使用 AutoCompleteTextView 实现手机号格式化附带清空历史的 *** 作

Android中使用 AutoCompleteTextView 实现手机号格式化附带清空历史的 *** 作,第1张

概述有个小伙伴遇到了这样一个问题,就是AutoCompleteTextView实现自动填充的功能。同时要具备手机格式化的功能。下拉列表最后一行是有个清除历史的功能。可是点击“清除历史”却把文字要设置进去AutoCompleteTextView中

有个小伙伴遇到了这样一个问题,就是autoCompleteTextVIEw实现自动填充的功能。同时要具备手机格式化的功能。下拉列表最后一行是有个清除历史的功能。可是点击“清除历史”却把文字要设置进去autoCompleteTextVIEw中。这样的效果显然很糟糕。所以我就写了这样一个简单的demo。来帮助遇到这种问题的朋友解决这样一个问题。二话不多说直接上代码。

  布局文件(activity_main.xml)代码如下: 

<?xml version="1.0" enCoding="utf-8"?>  <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent"    androID:orIEntation="vertical" >  <TextVIEw    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    androID:text="Please input:" />  <autoCompleteTextVIEw    androID:ID="@+ID/actv"    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content" />  </linearLayout>

  java文件(MainActivity.java)代码如下:

import androID.app.Activity;import androID.os.Bundle;import androID.text.Editable;import androID.text.Selection;import androID.text.TextWatcher;import androID.vIEw.VIEw;import androID.Widget.AdapterVIEw;import androID.Widget.AdapterVIEw.OnItemClickListener;import androID.Widget.ArrayAdapter;import androID.Widget.autoCompleteTextVIEw;import androID.Widget.EditText;import androID.Widget.TextVIEw;import androID.Widget.Toast;public class MainActivity extends Activity {private autoCompleteTextVIEw mautoCompleteTextVIEw;private String[] mautoStrs = new String[] { "138 0013 8000","13800138001",        "13800138002","13800138003","13800138004","138 0013 800清除记录" };private String mBeforeTextChangedStr = "";public voID onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentVIEw(R.layout.activity_main);  mautoCompleteTextVIEw = (autoCompleteTextVIEw) findVIEwByID(R.ID.actv);  ArrayAdapter<String> _arrayAdapter = new ArrayAdapter<String>(this,                androID.R.layout.simple_dropdown_item_1line,mautoStrs);  mautoCompleteTextVIEw.setAdapter(_arrayAdapter);  mautoCompleteTextVIEw.setThreshold(1);// 设置输入一个字符就提示  mautoCompleteTextVIEw.setonItemClickListener(new OnItemClickListener() {     @OverrIDe     public voID onItemClick(AdapterVIEw<?> arg0,VIEw arg1,int arg2,               long arg3) {        String _clearStr = "";        if (arg1 instanceof TextVIEw) {          _clearStr = ((TextVIEw) arg1).getText().toString();         }        if (_clearStr.equals("138 0013 800清楚记录")) {          mautoCompleteTextVIEw.setText(mBeforeTextChangedStr);          Editable _editable = mautoCompleteTextVIEw.getText();          Selection.setSelection(_editable,_editable.length());          Toast.makeText(MainActivity.this,"清除成功了!",          Toast.LENGTH_LONG).show();        }    }  });  phoneNumAddspaceOne(mautoCompleteTextVIEw);}/*** 手机号格式化代码* * @param editText* EditText对象*/public voID phoneNumAddspaceOne(final EditText editText) {  editText.addTextChangedListener(new TextWatcher() {    private int start;    private int before;    private StringBuilder stringBuilder;    @OverrIDe    public voID onTextChanged(CharSequence s,int start,int before,                 int count) {      this.start = start;      this.before = before;    }    @OverrIDe    public voID beforeTextChanged(CharSequence s,int count,      int after) {    }    @OverrIDe    public voID afterTextChanged(Editable s) {      String _str = s.toString();      if (!isNumeric(_str.replace(" ",""))) {        return;      }      mBeforeTextChangedStr = _str;      // 手机号格式化xxx xxxx xxxx      if (s == null || s.length() == 0)        return;      if (stringBuilder == null) {        stringBuilder = new StringBuilder();      } else {        stringBuilder.delete(0,stringBuilder.length());      }      for (int i = 0; i < s.length(); i++) {      if (i != 3 && i != 8 && s.charat(i) == ' ') {        continue;      } else {        stringBuilder.append(s.charat(i));      if ((stringBuilder.length() == 4 || stringBuilder        .length() == 9)&& stringBuilder.charat(stringBuilder.length() - 1) != ' ') {      stringBuilder.insert(stringBuilder.length() - 1,' ');      }    }  }  if (!stringBuilder.toString().equals(s.toString())) {    int index = start + 1;   if (stringBuilder.charat(start) == ' ') {  if (before == 0) {    index++;  } else {    index--;  }} else {  if (before == 1) {    index--;  }}  editText.setText(stringBuilder.toString());  editText.setSelection(index);}}});}/*** 判断字符串是否是数字* * @param str* 需要判断的字符串* @return*/public boolean isNumeric(String str) {  for (int i = str.length(); --i >= 0;) {    int chr = str.charat(i);    if (chr < 48 || chr > 57)    return false;    }    return true;  }}

以上所述是小编给大家介绍的AndroID中使用 autoCompleteTextVIEw 实现手机号格式化附带清空历史的 *** 作,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!

总结

以上是内存溢出为你收集整理的Android中使用 AutoCompleteTextView 实现手机号格式化附带清空历史的 *** 作全部内容,希望文章能够帮你解决Android中使用 AutoCompleteTextView 实现手机号格式化附带清空历史的 *** 作所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1146657.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存