ANDROID:我如何实现类似于'今日历史'应用程序的Listview?

时间:2014-12-02 08:03:36

标签: android android-listview

我想开发应用程序将事件显示为“今天的历史”,我想像这张图片一样构建时间轴列表视图的UI,如果有任何方式或库与此相关,请告诉我。 提前致谢

How to achieve listview like this

到目前为止,我已完成此操作,但如何隐藏listitem divider

I am done with this

1 个答案:

答案 0 :(得分:1)

将透明背景应用于分隔符,ListView布局应与此类似。

<ListView
    android:layout_width="match_parent"
    android:divider="@android:color/transparent"
    android:layout_height="match_parent"/>