android - How create custom EditText -


i want create custom edittext. should enter image description here

i crete this, can not create vertical line. edittext:

<edittext             android:layout_width="240dp"             android:layout_height="wrap_content"             android:ems="10"             android:id="@+id/paymentcode"             android:layout_gravity="center_horizontal"             android:drawableleft="@drawable/blue_card"/> 

it looks

enter image description here

first check out

https://github.com/faradaj/patternededittext

picture githubview

secondly

you need extend edittext in new java class , apply custom design in it. here examples (ofcourse not whole thing want have told have make own view yourself)

https://alinberce.wordpress.com/2012/02/20/android-edittext-with-custom-font-and-clear-button/

http://www.programering.com/a/mznyitmwaty.html

http://www.codeproject.com/tips/524556/android-customize-edittext-like-a-page-in-textbook


Comments