0

I have this problem with text in textView not getting ellipsized at it end. the textview is inside costume listView, when there is two list view side by side horizontally. the textView Inside the left listview getting ellipsized but the textView in the right listview not getting ellipsized.enter image description here

the text circled in yellow (that's the left listview) is good but text circled in blue is not good (that's the right listview). in each listview there's an imageView (the arrow), textView (the minute), another textView(the name with the problem).

Community
  • 1
  • 1
Shalom Melamed
  • 299
  • 1
  • 4
  • 13
  • Possible duplicate of [Two TextViews side by side, only one to ellipsize?](http://stackoverflow.com/questions/3785221/two-textviews-side-by-side-only-one-to-ellipsize) – blahdiblah Aug 07 '13 at 01:59

1 Answers1

0

finally found the solution in this thread: Two TextViews side by side, only one to ellipsize?

add the attributes:

enter code here android:layout_weight="1" android:ellipsize="end" android:inputType="text"
Community
  • 1
  • 1
Shalom Melamed
  • 299
  • 1
  • 4
  • 13