autocomplete - Show past emails in android EditText while entering emails? -


i have edittext this:

<edittext      android:id="@+id/txt_login_username"      android:layout_width="300dp"      android:layout_height="40dp"      android:layout_above="@+id/pengala_logo"      android:layout_alignleft="@+id/txt_login_pwd"      android:ems="10"      android:hint="please enter email"      android:inputtype="textautocomplete"      android:textcolorhint="#ffffff"      android:textsize="20sp" /> 

i want show email ids suggestion when user starts typing in edittext. similar this

enter image description here

for use autocomplete textview.

when user enter username in autocomplete textview , press login need store username in sharedpreferences. sharedpreferences see this tutorial.

select entred values sharedpreferences , display in autocomplete textview when user comes again.


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -