android 自定义控件之AutoCompleteTextView邮箱后缀自动补全

因为项目需要,要写一个邮箱自动补全的EditText,今天自定义一个控件,可以自动补齐邮箱后缀。先来看下效果:

由于原有的AutoCompleteTextView只是按照相同的字符串匹配,所以这里要自定义AutoCompleteTextView,然后复写里面的一些方法。

public class EmailAutoCompleteTextView extends AppCompatAutoCompleteTextView {

    private static final String TAG = "EmailAutoCompleteTextView";

    private String[] emailSufixs = new String[]{"@qq.com", "@163.com", "@126.com", "@gmail.com", "@sina.com", "@hotmail.com",
            "@yahoo.cn", "@sohu.com", "@foxmail.com", "@139.com", "@yeah.net", "@vip.qq.com", "@vip.sina.com"};


    public EmailAutoCompleteTextView(Context context) {
        super(context);
        init(context);
    }

    public EmailAutoCompleteTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context);
    }

    public EmailAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context);
    }

    public void setAdapterString(String[] es) {
        if (es != null && es.length > 0)
            this.emailSufixs = es;
    }


    private void init(final Context context) {
        //adapter中使用默认的emailSufixs中的数据,可以通过setAdapterString来更改
        this.setAdapter(new EmailAutoCompleteAdapter(context, R.layout.register_auto_complete_item, emailSufixs));
        //使得在输入1个字符之后便开启自动完成
        this.setThreshold(1);
        this.setOnFocusChangeListener(new OnFocusChangeListener() {
            @Override
            public void onFocusChange(View v, boolean hasFocus) {
                if (hasFocus) {
                    String text = EmailAutoCompleteTextView.this.getText().toString();
                    //当该文本域重新获得焦点后,重启自动完成
                    if (!"".equals(text))
                        performFiltering(text, 0);
                } else {
                    //当文本域丢失焦点后,检查输入email地址的格式
                    EmailAutoCompleteTextView ev = (EmailAutoCompleteTextView) v;
                    String text = ev.getText().toString();
                    //这里正则写的有点粗暴:)
                    if (text != null && text.matches("^[a-zA-Z0-9_]+@[a-zA-Z0-9]+\\.[a-zA-Z0-9]+$")) {

                    } else {
                        Toast toast = Toast.makeText(context, "邮件地址格式不正确", Toast.LENGTH_SHORT);
                        toast.show();
                    }
                }
            }
        });
    }

    @Override
    protected void replaceText(CharSequence text) {
        //当我们在下拉框中选择一项时,android会默认使用AutoCompleteTextView中Adapter里的文本来填充文本域
        //因为这里Adapter中只是存了常用email的后缀
        //因此要重新replace逻辑,将用户输入的部分与后缀合并
        Log.e("replaceText" , text.toString());
        String t = this.getText().toString();
        int index = t.indexOf("@");
        if (index != -1)
            t = t.substring(0, index);
        super.replaceText(t + text);
    }


    @Override
    protected void performFiltering(CharSequence text, int keyCode) {
        //该方法会在用户输入文本之后调用,将已输入的文本与adapter中的数据对比,若它匹配
        //adapter中数据的前半部分,那么adapter中的这条数据将会在下拉框中出现
//        Log.i("performFiltering" + " performFiltering", text.toString() + "   " + keyCode);
        String t = text.toString();
        //因为用户输入邮箱时,都是以字母,数字开始,而我们的adapter中只会提供以类似于"@163.com"
        //的邮箱后缀,因此在调用super.performFiltering时,传入的一定是以"@"开头的字符串
        int index = t.indexOf("@");
        if (index == -1) {
            if (t.matches("^[a-zA-Z0-9_]+$")) {
                super.performFiltering("@", keyCode);
            } else
                this.dismissDropDown();//当用户中途输入非法字符时,关闭下拉提示框
        } else {
            super.performFiltering(t.substring(index), keyCode);
        }
    }

    private class EmailAutoCompleteAdapter extends ArrayAdapter<String> {
        public EmailAutoCompleteAdapter(Context context, int textViewResourceId, String[] email_s) {
            super(context, textViewResourceId, email_s);
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            Log.i("getView", "in GetView");
            View v = convertView;
            if (v == null)
                v = LayoutInflater.from(getContext()).inflate(
                        R.layout.register_auto_complete_item, null);
            TextView tv = (TextView) v.findViewById(R.id.tv);
            String t = EmailAutoCompleteTextView.this.getText().toString();
            int index = t.indexOf("@");
            if (index != -1)
                t = t.substring(0, index);
            //将用户输入的文本与adapter中的email后缀拼接后,在下拉框中显示
            tv.setText(t + getItem(position));
            Log.i("getView", tv.getText().toString());
            return v;
        }

    }

}

        这里面通过重写AutoCompleteTextView的代码实现邮箱的后缀显示。在初始化时,定义了带邮箱后缀的Adapter,当用户输入数据时,把文本框的数据与邮箱后缀拼接的字符串填充到Adapter,EmailAutoCompleteTextView会自动显示与用户输入的字符串匹配的数据显示在下拉框中。当用户点击时,会自动调用replaceText(CharSequence text)的代码,这里把邮箱的后缀与用户的内容拼接的字符串填充到文本框中。

         此外,当用户输入数据时,会自动调用protected void performFiltering(CharSequence text, int keyCode) 的代码,这里由于adapter中只是保存了邮箱的后缀,所以重写此代码,当用户输入邮箱的后缀,如“@163.com”时返回的是“@”之后的数据,显示匹配的数据。当用户没有输入“@”时,返回“@”这个字符显示所有的邮箱后缀。 

现在就可以直接引用了,引用的时候注意自定义文件的路径

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".EmailAutoCompleteTextActivity">
    <com.example.a31210.mypermissions.view.EmailAutoCompleteTextView
        android:id="@+id/act"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入您常用的邮箱"
        android:textColor="#000"
        android:shadowRadius="1" />

</LinearLayout>

android 自定义控件之AutoCompleteTextView邮箱后缀自动补全 就讲完了。 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值