I want to store an array in an XML file.
The array will be called with the following function.
String getTextSpeech = TextSpeech[Index];
This is the use of textToSpeechAPI.
How to save a TextSpeech [] array in an xml file in a values folder, and then call it inside the class.
thank
Edit:
<resources>
<string-array name="myArray">
<item>String1</item>
<item>String2</item>
<item>String3</item>
</string-array>
</resources>
Tommy source
share