Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 696
pawarrohit14 Avatar asked Nov 10 '22 22:11

pawarrohit14


1 Answers

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"/>
like image 92
Philipp Schumann Avatar answered Nov 14 '22 21:11

Philipp Schumann