views:

34

answers:

1

I have a list view holding text views and when the text gets too big, it wraps and the item takes up two spaces. I am wondering if there is a way to turn off line wrap in this case, and if it should be done in the textview or the listview.

+1  A: 

Set android:singleLine attribute in TextView to true

Orsol
Perfect. Thank you <3
TehGoose