<!--
android:backgroundTint for EditText works only on API21+ . Because of it, we have to use support library and AppCompatEditText.
Note: we have to use app:backgroundTint instead of android:backgroundTint.
-->
<android.support.v7.widget.AppCompatEditText
app:backgroundTint="@color/blue_gray_light" />