I everyone. I’m very new to Android development and I want to develop an application that uses a local database. I want to show the results of queries in a DataGrid like object.
The UI would be somewhat similar to this.

Is it possible to develop this kind of UI in Android? If so how can I accomplish this? Are there good tutorials I can follow?
Thank you very much.
Marco Sousa
ListViewis probably what you want. You have complete control over the presentation of each row through theListAdapterthat your app supplies, which you can use to present each row’s data as a series of fixed width columns. Helpers such asCursorAdapterwill give you a starting point for presenting data from a local database.