miércoles, 13 de abril de 2011

Android: Writting long text on Canvas

Some time ago i researched how to write a long text on canvas on my Android apps. I finally just used this code:


TextPaint texto = new TextPaint();
StaticLayout layout = new StaticLayout("My long long long long text! My long long long long text! .", texto, 140,android.text.Layout.Alignment.ALIGN_CENTER,(float)1.0, (float)0.0, true);
layout.draw(canvas);


No hay comentarios:

Publicar un comentario