pawarrohit14
pawarrohit14

Reputation: 497

ANDROID : How can i achieve Listview similar to 'today in history' app?

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

How to achieve listview like this

I am done with this, upto now, but how to hide listitem divider

I am done with this

Upvotes: 5

Views: 2052

Answers (1)

Philipp Schumann
Philipp Schumann

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

Related Questions