I'm building an app that has a grid layout with programmatically generated items inside the grids, each of those items has some info like "name", "row", "column", "gridLayoutName", "someothervalues", "description of the item".
I will have hundreds of those items so I would like to store those information in an xml or external file. The code should access and load all of them, and show them inside the gridLayout, only some data will be accessed in the creation of the grid, like name, row and column, the rest will be accessed when the item will be clicked
How can i store all this data in my app, and how can i access each info like name, row, column etc. programmatically to build the grid?