Typeface.ITALIC not working on Galaxy Note 2
Asked Answered
A

2

11

I'm making an app where sometimes I want to change the font of a textview to italics, depending on the data to show.

On my Galaxy Nexus, it's simply a case of

textView.setTypeface(font, iWantItalics ? Typeface.ITALIC : Typeface.NORMAL);

and it works beautifully.

The problem is that I've got a new Galaxy Note II to test and... nope, no italics.

Reading Samsung devices supporting setTypeface(Typeface.Italic)? I get the impression that it's a bug on the Note's Android build, so the Roboto font simply has no italics. I've tried every advice on that thread and others similar (Typeface.defaultFromStyle(Typeface.ITALIC), Typeface.create(null, Typeface.ITALIC), etc.) with no luck.

My problem is that the workaround the guy from that thread used was copying the Roboto TTF in the assets directory and creating the font from there but what about people with another default font in their phones? I don't want to force Roboto on them or, even worse, to have that other font when the typeface is normal and Roboto italics otherwise.

Has anybody an idea for me? Thanks.

Adhere answered 28/11, 2012 at 1:23 Comment(5)
I created the question that you referenced. For what its worth I never found any other way to deal with the devices that didn't work correctly. Sorry for the bad news. I do hope someone comes forward with a better solution though =)Eighty
It's incredible to have such an stupid bug in such a high-end and brand new device, isn't it?Adhere
I've got the attention of a developer in the Samsung forums, so there is hope. :) developer.samsung.com/forum/thread/…Adhere
On my Samsung Galaxy Tab 2, it doesn't work either.Pteropod
@Pteropod See my answer, maybe that helps you too!Selfcontradiction
S
14

As a workaround for this bug, you can set the text italic this way (which seems to work on the broken Samsung devices):

textView.setText(setTextStyleItalic(textView.getText());

and you need this method:

public static CharSequence setTextStyleItalic(CharSequence text) {
    final StyleSpan style = new StyleSpan(Typeface.ITALIC);
    final SpannableString str = new SpannableString(text);
    str.setSpan(style, 0, text.length(), 0);
    return str;
}
Selfcontradiction answered 19/2, 2013 at 15:25 Comment(1)
Works like a charm. Great job!Adhere
B
4

Another easy solution is to do it like this:

myTextView.setText(Html.fromHtml("<i>" + myString + "</i>"));
Barograph answered 29/5, 2013 at 13:5 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.