stanchat wrote: > I am trying to display a high score table in my application and wanted > to know the Best Practice for displaying static headers or footers. > The data for the High Score tableis a REST web service returing up to > 100 JSON records. I have looked at some of the previous posts > http://groups.google.com/group/android-developers/browse_thread/thread/9f11fe55e35d0e9e/997e3a06ec25d745?lnk=gst&q=addHeaderView > that talk about addHeaderView() & addFooterView() but they all seem to > indicate that the footer or header will scroll off the screen.
That is correct. > My 1st > question is has someone been able to implement this in a clean way to > allow a basic static header or footer. Put it in your layout above or below your ListView. > My second question is is their > another way I could accomplish my goal of displaying my high score > table besides a List View. I will be displaying 6 columns of data > which will need to scroll vertically. You could consider using a GridView. The Android community could definitely use a TableView that works like GridView but handles column headers, sorting, user-selectable column widths, etc. Something along the lines of JXTable, but for Android (e.g., optimized for memory & battery). Hopefully, somebody is working on one. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Training: http://commonsware.com/training.html --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

