Posts by Gabriel Mateus • 1 point
2 posts
-
0
votes1
answer98
viewsA: Listview inside Listview (ANDROID)
I managed to solve the problem with the code below! public void setListViewHeightBasedOnChildren(ListView listView) { ListAdapter listAdapter = listView.getAdapter(); if (listAdapter == null) { //…
-
-1
votes1
answer98
viewsQ: Listview inside Listview (ANDROID)
I am developing an application where this one has an Activity where it generates a Listview of Orders, and within the Adapter of this list of orders, I have another Listview that are the items, ie I…