In my Android app I want to make a list of options that can be clicked. On whichever item you click, it always brings you to the same next screen but with a different .putextra(). I can do this with a simple ListAdapter as is done here.
That works fine, but I do want the values to be translated in the app for different languages. I guess this means I need to define all the values in the listview in my strings.xml. I can of course define some values in strings.xml, but I wouldn't know where to start to get values from my strings.xml into a listview.
Does anybody know how I would be able to get translatable values into an Android ListView? Any tips are welcome!