Reputation: 772
I want to a create list view with multiple raw and each cell has a different height and width, what is the best way to do that? do i use a gridView? or GridLayout? or listView(this is the last choice)
Upvotes: 1
Views: 89
Reputation: 2700
Todo the things that you asked in an easier way, android introduced RecyclerView. You can create listview, gridview, staggered gridview by just using recyclerview. For more info about Recyclerview refer Here
Upvotes: 0