Add shadow to EditText

Add shadow to EditText

To add shadow to EditText, simple add the following to XML inside <EditText>: android:shadowColor="#000000" ...
Implement TextWatcher to EditText

Implement TextWatcher to EditText

This example implement TextWatcher, attach to EditText with addTextChangedListener(). Its methods will be called when the text is changed. I...