Best approach to show big amount of "grid" data
        Posted  
        
            by Jorge Ramírez
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Jorge Ramírez
        
        
        
        Published on 2010-03-15T12:39:41Z
        Indexed on 
            2010/03/15
            12:59 UTC
        
        
        Read the original article
        Hit count: 340
        
Hello all. I am building an application for Android (1.5) that, after quering a webservice, shows to the user a big amount of data that should be displayed in a "grid" or "table" style.
I must show a result of about 7 columns and 50 rows (for example a customer list with names, adresses, telephone number, sales amount last year and so).
Obviously, the 7 columns will not fix in the screen and I would like the user would be able to scroll up/down and LEFT/RIGHT (important because of the number of columns) to explore the grid results.
cell selection level is NOT necessary, as much I would need row selection level.
What is the best approach to get this interface element? Listview / GridView / TableLayout?
Thanks
© Stack Overflow or respective owner