i have a sting array containing these elements
<string-array name="actions">
<item>Item 1</item>
<item>Item 2</item>
<item>Item 3</item>
</string-array>
i want to access to this string array "actions" and modify programmatically in it i mean like removing and adding items but in java not in xml .is there any solution to do that ?
Thanks :)