Is there a relatively easy way to populate and scroll a ListView (or any other view) from the bottom up? I am reading UDP Packets of GPS data and want to display the most recent 10 entries; self-scrolling. It would look very similar to the log display while compiling/running from the B4A IDE. I have been searching the forum and experimenting for several days with no luck. I did see a third party presented "UltimateListView", but I would like to stick with standard code.
I also need to remove all but the last 50 or so entries. The UDP stream produces a huge amount of data, and never stops. I envision memory problems if overloading. I have been attempting CustomListView1.RemoveAt(i), with a rolling counter, but no real success.
Forgive me if this is a trivial question - I will likely be asking a few. Other then a little VBA, this is my first foray into OOP. FORTRAN, well there is a language I can speak. Visual FORTRAN - now that's an idea...
I also need to remove all but the last 50 or so entries. The UDP stream produces a huge amount of data, and never stops. I envision memory problems if overloading. I have been attempting CustomListView1.RemoveAt(i), with a rolling counter, but no real success.
Forgive me if this is a trivial question - I will likely be asking a few. Other then a little VBA, this is my first foray into OOP. FORTRAN, well there is a language I can speak. Visual FORTRAN - now that's an idea...