I'm developing my first app and I want to show a grid in which there is a list of entries. I get those entries through queries on local SQLite database so this it is a dynamic list. Every item of this list should have 2 field: a string and a value.
How to correctly do it in an activity? I see ListView but it doesn't seem to suit my needs and I do not need clickable items.
Can you suggest a better solution?