Android minLines and maxLines aren't working together in same TextView
问题 Here I have only 1 item in ListView and I'm showing two different TextViews of different colors at the end of the ListView item. But the issue is I wanna show maximum 3 lines of each TextView but it's not providing me a good result if length of TextView is small. But it works well if text is large. When I add android:maxLines="3" and text is small, it destroys my layout like And when I add android:minLines="2" and text is large, it shows complete text like Give me a way to overcome this