android - EditText hint and text with different text size -


i searching how set different text size hint , user input text in edit text. have 2 question on this. 1) possible show different size text hint , user input? 2) if yes how can achieve this? refer android edittext hint size link other alternative available custom style. please guide me on same.

use code ..

edittext.sethint(html.fromhtml(     "<font size=\"5\">" + "hinttext1" + "</font>" +      "<small>" + "hinttext2" + "</small>" ));  

Comments