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

paw*_*t14 5 android android-listview

我想开发应用程序将事件显示为"今天的历史",我想像这个图像一样构建像时间线列表视图的UI,如果有任何方式或库,请告诉我.提前致谢

如何实现这样的listview

到目前为止,我完成了这个,但是如何隐藏listitem分隔符

我完成了这件事

Phi*_*ann 1

将透明背景应用于分隔线,您的 ListView 布局应该与此类似。

<ListView
    android:layout_width="match_parent"
    android:divider="@android:color/transparent"
    android:layout_height="match_parent"/>
Run Code Online (Sandbox Code Playgroud)