I wanted to remove the bottom
EditText
EditText
EditText
EditText
EditText
android:background="#00000000"
android:background="@android:drawable/editbox_background_normal"
EditText
Try This
edittext_bg.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<!-- Draw a 1dp width border around shape -->
<stroke
android:color="#d3d3d3"
android:width="1dp"
/>
</shape>
</item>
<!-- Draw only bottom border using background color -->
<item
android:bottom="1dp"
>
<shape android:shape="rectangle">
<solid android:color="#ffffff"/>
</shape>
</item>
</layer-list>
and apply background to Your EditText
like
android:background="@drawable/edittext_bg"