我正在尝试使用具有粘性标题的列表视图以及向左滑动的功能,并且显示两个可单击的选项。
我需要两个,但我遇到的主要问题是StickyListHeaders要求我像这样声明我的ListView
<se.emilsjolander.stickylistheaders.StickyListHeadersListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
SwipeMenuListView要求我声明我的listViews像这样
<com.baoyz.swipemenulistview.SwipeMenuListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
是否有某种方法可以将listView声明为xml中的SwipeMenuListView和StickyListHeaders ListView?
或者是否有任何解决方法?
请耐心等待,因为这是我关于堆栈溢出的第一篇文章。
此外,这里是我想要包含在我的项目中的两个github项目的链接。