sriRohit
sriRohit

Reputation: 27

Handling a large number of items in a listview

I am creating a directory of schools in android application and want to open their details on new page by clicking on it from list view. how should i handle it?

Upvotes: 0

Views: 738

Answers (2)

Ajit Dalvi
Ajit Dalvi

Reputation: 21

make Pojo of the student info and pass it to the next activity using parcelable object

Upvotes: 1

Aiko West
Aiko West

Reputation: 791

I would recommend to use a RecyclerView. You can find a simple example here.

Upvotes: 1

Related Questions