我想像这样图片
创建可消费的ListView
点击ListView
xcewwn showlike时告诉我firsxt这是可消耗的ListView
还是抽屉?我将如何创建这样的屏幕帮助我,谢谢你。
下面是我的简单ListView
如何制作像这个图像的消耗型ListView
<LinearLayout
android:id="@+id/lytContent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/txtCopyright"
android:layout_below="@+id/lytTitlebar"
android:orientation="vertical" >
<ListView
android:id="@+id/listMainMenu"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@color/background"
android:dividerHeight="1dip"
android:fadeScrollbars="true" />
</LinearLayout>
答案 0 :(得分:0)
Android中已经有一个可以使用的ExpandableListView视图窗口小部件,但它并不能让你一直到达你想要的东西。您必须为组标题(示例中的学校名称)及其子项创建自定义视图。将它与ExpandableListAdapter的子类连接在一起,你应该顺利完成。