Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am in the process of trying to convert a desktop app to Android - and am struggling with some very basic stuff.

When I specify a layout including a textview that holds a sizable amount of text wrap_content seems to arbitrarily break in the middle of a word - and I can not find any documentation indicating this can be controlled.

share|improve this question
Are you seeing this exhibited on an actual device as well as the emulator in addition to the graphical representation of the xml view? – Norman H Mar 1 '12 at 5:11

2 Answers

That has never happened to me. Any TextView that I've used has intelligently wrapped text. You shouldn't need to provide any additional parameters, the default is fine. Can you share your XML layout?

share|improve this answer
I've seen it happen to a URL when android:autoLink="web" is being used. For example, "www.andromo.com" was split after the "www." part. – Lorne Laliberte Jul 27 '11 at 21:37
This "answer" should have been a comment. – Norman H Mar 1 '12 at 5:10
You're right. I was expecting a pretty quick response though since I posted it 6 minutes after the question was asked. – Brandon O'Rourke Mar 1 '12 at 23:01

Try useing Ellipsize property of TextView.

"If set, causes words that are longer than the view is wide to be ellipsized instead of broken in the middle"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.