I have an EditText with a drawableLeft image. I need to add a vertical line in EditText right beside my drawableLeft like
EditText
drawableLeft
You can create a layout and attache to the editText as a property
layout
android:drawableRight="@android:drawable/your_layout"
for example
in your your_layout.xml file you can put anything you want.
your_layout.xml
Please check this