Set Edittexts hint text style as italic
Inside strings.xml <string name=”hint1″><i>Your hint here</i></string> In your .xml file <EditText android:hint=”@string/hint1″ />
Inside strings.xml <string name=”hint1″><i>Your hint here</i></string> In your .xml file <EditText android:hint=”@string/hint1″ />
android:layout_width=”wrap_content” , gives you a rectangle for wrapped content rendering. All will work well for normal text (non-italic). Once you have italic text enabled, the wrapped text will try to fit into the rectangle and hence the rightmost character will be cut off unless its un-cut-able (such as ., ), 1, etc.) Solution as suggested … Read more