Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set Edittexts hint text style as italic

I need to set the hint of a EditText as italic style, but I can't find any place how to do it.

Some one here has a clue how to do it or do I have to accept that is impossible?

like image 454
lagos Avatar asked Feb 04 '13 10:02

lagos


1 Answers

Inside strings.xml

 <string name="hint1"><i>Your hint here</i></string> 

In your .xml file

  <EditText android:hint="@string/hint1" /> 
like image 51
Deepzz Avatar answered Sep 19 '22 04:09

Deepzz