I'm trying to take two "string array" from XML file, and make a guessing game First of all showing random symbol on screen from string array "first" あ this symbol is equal "a" from the "second" and so on. User has to guess what kind of letter does that symbol refers to. Since I'm going to make a lot of these arrays, anyone has an Idea or peace of code as an example, other options are also fine.
<string-array name="first">
<item>あ</item>
<item>い</item>
<item>う</item>
<item>え</item>
<item>お</item>
</string-array>
<string-array name="second">
<item>a</item>
<item>b</item>
<item>c</item>
<item>d</item>
<item>e</item>
</string-array>
Alternatively, you can do this: