my goal:
create an image gallery with each image having a description, name, title, other possible misc info. as the user navigates through the gallery, image info will be displayed. i plan to store the data in an arraylist of maps ArrayList<Map<String, String>>
which is filled from the database. the list will include resource ID values among image info.
problem:
I am saving drawable resource ID values in an SQLite database when the app is opened for the first time. from then on, i will be referring to the sqlite stored resource ID values, and not directly retrieving resources by this R.drawable.drawable_name
fashion. can i guarantee that the resource ID values will never change after the app is installed?