AutoCompleteTextView with email domains android
So I have an autocompletetextview field in my app which I want the user to enter his email address. Now, to help him type it faster and don't make mistakes, I want to suggest him the most commons email domains servers while typing it. Im using that control with this array String[] arraymails ={"@gmail.com","@hotmail.com","@yahoo.com","@outlook.com"}; and this in the oncreate mEmailView = (AutoCompleteTextView) findViewById(R.id.register_email); ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,arraymails); mEmailView.setAdapter(adapter); The idea