So I’ve got this layout scenario that I havent found any desirable solution for. I’ve made a paint of it, i hope it’s understandable.

Right now my ListView is always above the LinearLayout at the bottom. When the ListView has few items, the TextView is just below and it looks fine. However when it has many items, it crushes the TextView in between, which should always be there no matter what, between the LW and bottom container.
Could anyone give me a xml example that achieves just this?
You can wrap the
ListViewinside aLinearLayoutand set weights to thisLinearlayout, theTextViewand the bottomLinearLayout. (You have to wrap the ListView inside aLinearLayoutbecause you can’t apply weights to aListView).