0

我有一个列表视图并将页脚中的另一个列表视图添加到第一个列表视图中。页脚列表视图的所有行都没有显示。

添加页脚

footerView = (View) getLayoutInflater().inflate(R.layout.species_fav_footer, null); list_fav.addFooterView(footerView);

页脚.xml

  1. <TextView
        android:id="@+id/saltWater"
        style="@style/BlueTitleBar"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
               android:text="Saltwater"
        />
    
    <ListView
        android:id="@+id/list_fav_species_salt"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:cacheColorHint="#00000000" 
        android:layout_marginBottom="10sp"
    
        />
    

4

0 回答 0