J'ai eu le même problème. Une de mes premières solutions est la suivante.
/**
* This function draws the text on the canvas based on the x-, y-position.
* If it has to break it into lines it will do it based on the max width
* provided.
*
* @author Alessandro Giusa
* @version 0.1, 14.08.2015
* @param canvas
* canvas to draw on
* @param paint
* paint object
* @param x
* x position to draw on canvas
* @param y
* start y-position to draw the text.
* @param maxWidth
* maximal width for break line calculation
* @param text
* text to draw
*/
public static void drawTextAndBreakLine(final Canvas canvas, final Paint paint,
final float x, final float y, final float maxWidth, final String text) {
String textToDisplay = text;
String tempText = "";
char[] chars;
float textHeight = paint.descent() - paint.ascent();
float lastY = y;
int nextPos = 0;
int lengthBeforeBreak = textToDisplay.length();
do {
lengthBeforeBreak = textToDisplay.length();
chars = textToDisplay.toCharArray();
nextPos = paint.breakText(chars, 0, chars.length, maxWidth, null);
tempText = textToDisplay.substring(0, nextPos);
textToDisplay = textToDisplay.substring(nextPos, textToDisplay.length());
canvas.drawText(tempText, x, lastY, paint);
lastY += textHeight;
} while(nextPos < lengthBeforeBreak);
}
Ce qui manque:
- Aucun mécanisme de cassure intelligente, car elle se casse basée sur le maxWidth
Comment appeler? J'ai une classe statique appelée CanvasUtils où j'encapsule des trucs comme ça. Fondamentalement, je dessine le texte dans un rectangle. C'est la raison pour laquelle textHeight est la hauteur du texte. Mais vous pouvez transmettre ce que vous voulez à la fonction.
Bonne programmation!
Voir cette réponse pour un bon exemple d'utilisation de 'StaticLayout's: http://stackoverflow.com/a/8369690/293280 –