I am developing an Android app. I need to know how we can have a EditText with border. In Lolipop they have completely changed the EditText style. Can we do it without using
Write editTextBackground.xml in drawable folder in resources
don't forget to declare color in resources named borderColor.
and assign this background to the EditText in xml background attribute
and it'll set border to EditText.
You can change border of edit text without drawable by using style attribute
style="@style/Widget.AppCompat.EditText"
for more details visit customize edit text