Custom Edit Text Example

This example will show you how can you create and work with custom edit text in android application. In this example we are going to change the font_type(font_typefae) of edit text. Steps :- 1) Create one java file that extends EditText. 2) Create one attrs.xml file in values folder where you can add your custom tag. 3) Create assets folder and put your font inside that . 4) Use your custom Tag in xml file. Open your string.xml adn add your text name like below. string.xml < resources > < string name= "app_name" >myprojecttest</ string > < string name= "action_settings" >Settings</ string > < string name= "font_Pacifico" >Pacifico.ttf</ string > //name you want //font name exactly same as in assets folder </ resources > attrs.xml < resources > < declare-styleable name= "editText" > < attr name= "font_type...