我创建了一个带有两个列表片段的滚动视图,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/blue_shade_top_gainers_and_loosers"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingBottom="1dip"
android:paddingLeft="1dip"
android:paddingRight="1dip"
android:paddingTop="2dip" >
<fragment
android:id="@+id/header_fragment"
android:name="com.lk.ignitionit.cse.util.HeaderFragmentActivity"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView13"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/rl_top"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginBottom="1dip"
android:layout_marginLeft="1dip"
android:layout_marginRight="1dip"
android:layout_marginTop="1dip"
>
<LinearLayout
android:id="@+id/headg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical" >
<include layout="@layout/top_gainer_header" />
</LinearLayout>
<fragment
android:id="@+id/gain"
android:name="com.lk.ignitionit.cse.application.TopGainersFragmentActivity"
android:layout_width="match_parent"
**android:layout_height="wrap_content"**
android:layout_below="@+id/headg" />
<LinearLayout
android:id="@+id/headl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/gain" >
<include layout="@layout/top_loosers_header" />
</LinearLayout>
<fragment
android:name="com.lk.ignitionit.cse.application.TopLoosersFragmantActivity"
android:layout_width="match_parent"
**android:layout_height="wrap_content"**
android:layout_below="@+id/headl" />
</RelativeLayout>
</ScrollView>
</LinearLayout>
但输出不显示整个列表
然后我将片段布局高度更改为 240dip 而不是“wrap_content”,现在足以显示整个列表。但问题是,这些数据是动态的,每个列表片段都有 10 个列表项。所以我无法预测片段的高度。如果名字很长,这个高度是不够的。
所以我需要将片段高度设置为 wrap_content 并且可以滚动。我怎样才能做到这一点?