EditText with drawable icon Dankers July 18, 2017 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/and... Read more »
Set background and alpha of EditText Dankers July 17, 2017 Examples of Setting background and alpha of EditText: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmln... Read more »
EditText with custom shape (drawable) Dankers July 16, 2017 To create EditText with our own shape, create a drawable XML to define our custom shape: res/drawable/myshape.xml <?xml version="1.0... Read more »
AutoCompleteTextView, subclass of EditText with Auto-complete function Dankers July 13, 2017 AutoCompleteTextView is a subclass of EditText that shows completion suggestions automatically while the user is typing. To implement AutoC... Read more »
Another example of TextWatcher to monitor text changed in EditText Dankers July 11, 2017 Last show Monitor user action on EditText, and do something in onTextChanged() method of TextWatcher . It's another example to do someth... Read more »
Monitor user action on EditText Dankers July 10, 2017 This example implement TextWatcher for EditText, such that we can detect user action on EditText, no extra "Enter" button is need.... Read more »