I want to access strings.xml and arrays.xml at runtime ,to parse it and read my custom provided attributes.
Is this possible? If yes, how can i access it?
The thing is that I have a questionnaire and I wanted to give each question, that is defined in strings.xml a unique key, so that each question can be identified.
This key I've added as a attribute.
<string key="keyForQuestion" name="question1">This is a question?</string>
Maybe there is also a way to access the name attribute? Without parsing it on my own.