I have defined a string array in my values folder in this way for default English language
<string-array name="movie">
<item>11001#Action#1</item>
<item>11002#Animation#1</item>
<item>11003#Comedy#1</item>
<item>11004#Documentary#1</item>
<item>11005#Family#1</item>
<item> 11006#Film-Noir#1</item>
<item>11007#Horror#1</item>
<item>11008#Musical#1</item>
<item>11009#Romance#1</item>
</string-array>
My applicaiton is suported for many language like chainese simplified thats why i have defined another string-array in values-zh-rCN/string.xml for chainese simplified langue like this way
<string-array name="movie">
<item>11001#动作片#1</item>
<item>11002#动画片#1</item>
<item>11003#喜剧#1</item>
<item>11004#记录片#1</item>
<item>11005#家庭#1</item>
<item> 11006#黑色电影#1</item>
<item>11007#恐怖片#1</item>
<item>11008#音乐剧#1</item>
<item>11009#爱情片#1</item>
</string-array>
when my app is running and seleted Default english langue shown the array data but when i have seleted phone language in chainese simplified or other langue instead of english the array data does not shown. what are the possible solutionn for these problem ?