Android Question Number of records in listview

MarcioCC

Member
Licensed User
Longtime User
Good evening, someone has an example of how to count how many records my table has ?? I want to list in the listview the records and in the end put the amount of records listed in the listview, anyone already done it ??
 

ronell

Well-Known Member
Licensed User
Longtime User
put the records in a list then count the list

B4X:
list.Size

you can also count the listview

B4X:
Listview.size
 
Upvote 0
Top