I just implemented a ListView inside a LinearLayout, but I need to define the height of the LinearLayout (it has to be 50% of the screen height).
You can use android:weightSum="2" on the parent layout combined with android:layout_height="1" on the child layout.
android:weightSum="2"
android:layout_height="1"