(使用安卓 4.0.4 版)
我正在尝试构建与 GroceryIQ 应用程序中的列表非常相似的功能:
我可以使用下面 xml 中显示的 ExpandableListView 和扩展 BaseExpandableListAdapter 的自定义类创建一个漂亮的列表,但是我在第二个列表中遇到了问题。它是两个列表,两者之间有一个视图吗?这可能只是一个带有特殊列表分隔符的列表,看起来像条吗?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<ExpandableListView
android:id="@+id/ExpList"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@null"
android:dividerHeight="5dp"
android:groupIndicator="@null"
android:paddingBottom="60dp" />
<include
android:layout_width="wrap_content"
android:layout_alignParentBottom="true"
layout="@layout/bottom_bar_list" />
</RelativeLayout>
我尝试添加另一个列表,但一个视图上的两个列表似乎不太配合——第一个列表被截断或第二个列表不显示。
谢谢你的想法!