Reputation: 497
I want to developer app to show event as "today in history", i want to build UI like timeline listview like this image, please let me know if there is any way or library related to this. Thanks in advance
I am done with this, upto now, but how to hide listitem divider
Upvotes: 5
Views: 2052
Reputation: 1780
Apply a transparent background to your divider, your ListView layout should look similar to this.
<ListView
android:layout_width="match_parent"
android:divider="@android:color/transparent"
android:layout_height="match_parent"/>
Upvotes: 1