I am making a custom Field representing an image and a label near it.
I am drawing the image by graphics.drawBitmap(...)
Nw for the text, I am using graphics.drawText(String, x, y);
but if the text it bigger than the display, it doesn't return to the line. I tried to add \n
but that didn't solve the problem.
How can I draw a text that can expand on several lines?
Thanks,