Hi All

I am stuck in a very simple problem.

I have one lengthy string & I need to draw that on the device display.

My code is as follows:

void ShowText(String text) {
                 canv = thread.mSurfaceHolder.lockCanvas();     

                        if (text!= null) {
                        
                                canv.drawColor(Color.WHITE); //background color
                                mPaint.setColor(Color.BLACK); //font color
                                mPaint.setTextSize(15);         //font size     
        
                                canv.drawText(text, 10, 200, mPaint);           
                //startign at some
(10,200) coordinates , dratext
                        }

             unlockCanvasAndPost(canv);
        }

But the problem here is, the string is going out of the screen. I want
it to break down into multiple lines if it is too big for the screen
width.

Can anybody show me some example to do this?

Thanks
Latha
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to