以下是我的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占用其内容所需的空间,并拥有整个活动滚动。为此,我已将整个内容包含在滚动视图中。
由于
答案 0 :(得分:0)
您应该为android:fillViewport="true"
设置ScrollView
属性,使其适合专用于Activity
的屏幕分区。