如何将listview添加到其他listview页脚

时间:2013-07-17 05:19:24

标签: android android-listview

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

添加页脚

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

footer.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"
    
        />
    

0 个答案:

没有答案