Related questions
How do draw italic text on Android canvas?
In my app I am drawing text on Android Canvas;
Now to support underline and bold I am taking help of paint object;
Paint paint = new Paint();
paint.setUnderlineText(true);
paint.setFakeBoldText(true);
paint.setColor(color);
paint.setTextSize (font_size);
…
Android TextView Justify Text
How do you get the text of a TextView to be Justified (with text flush on the left- and right- hand sides)?
I found a possible solution here, but it does not work (even if you change vertical-center to center_…