Ниже приведен мой XML-код. Пожалуйста, игнорируйте цвета. Я положил их туда для тестирования
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ff0000">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="match_parent" android:background="#ffffff">
<TabHost android:id="@+id/distributionTabhost" android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="match_parent" android:background="#00ff00" />
<FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="match_parent" android:background="#ff0000">
<LinearLayout android:id="@+id/ITCCGListContainer" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ListView android:id="@+id/ITCCGList" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1"
android:drawSelectorOnTop="false" android:background="#00ff00"/>
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
</ScrollView>
Когда я использую это для деятельности, высота списка очень мала и не занимает оставшееся пустое пространство. Я хочу, чтобы Listview занимал столько места, сколько требуется для его содержимого, и имел весь свиток Activity. Для этого я вложил все это в обзор прокрутки.
Спасибо