如何修复listview标题视图的位置

时间:2014-11-21 12:47:08

标签: android android-listview

我在我的应用程序中使用SwipListView(github demo)并在其中添加标题视图,如listView.addHeaderView(headerView);

我想修复此标题的位置,标题不应该与listview一起滚动。我搜索了很多,但无法找到任何解决方案,我只看到stickyListHeaders但是用户Framlayout

1 个答案:

答案 0 :(得分:0)

为什么不使用listview顶部的布局作为标题。因此,当您滚动列表视图时,标题会粘在其位置上。

<LinearLayout
   android:orientation="vertical">   <-----Main Parent View---->

   <RelativeLayout> 


 <----Fixed Header View------->


   </RelativeLayout>


   <ListView> 


<----scrollable list view----->


  </ListView>

</LinearLayout>