带搜索栏的 listview,轻拉出现搜索栏,用力拉出现下拉刷新
ncnf
10年前
带搜索栏的 listview,轻拉出现搜索栏,用力拉出现下拉刷新
Usage
SearchListView 直接放入布局中
<vivian.com.searchlistview.widget.SearchListView android:id="@+id/listview" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center_horizontal" android:background="@color/stand_backgroud" android:cacheColorHint="#00000000" android:drawSelectorOnTop="false" android:listSelector="@android:color/transparent">
添加 SearchBar
SearchBar searchBar=new SearchBar(this); mListView.addHeaderView(searchBar);
设置自动下拉刷新
mListView.pullRefreshEnable(true);//下拉刷新 mListView.setAutoFetchMore(true);//自动加载更多