Textview In List Is Cut Off
I have a Custom ListView with an imageview and 2 TextViews above each other next to the imageview. The bottom textView hold a description of the title, but it it cut off by the lis
Solution 1:
Try changing your two android:layout_height="fill_parent"
values on your LinearLayouts
to android:layout_height="wrap_content"
. fill_parent
does not have much meaning in this situation.
Post a Comment for "Textview In List Is Cut Off"