This code is stored in res/values/strings.xml
<string-array name="planets_array">
<item>एक काम</item>
<item>दो काम</item>
<item>तीन काम</item>
<item>चार काम</item>
</string-array>
The array will be passed onto ArrayAdapter which will be used in Navigation Drawer. However, I want these Items to be referenced using an english name.
EDIT
This code was done according to changes suggested by Dave.
<resources>
<string name="Mercury">एक काम</string>
<string name="Venus">दो काम</string>
<string name="Earth">तीन काम</string>
<string name="Mars">चार काम</string>
<string name="app_name">Navigation Drawer Example</string>
<string-array name="planets_array">
<item>@string/Mercury</item>
<item>@string/Venus</item>
<item>@string/Earth</item>
<item>@string/Mars</item>
<item>Jupiter</item>
<item>Saturn</item>
<item>Uranus</item>
<item>Neptune</item>
</string-array>
<string name="drawer_open">Open navigation drawer</string>
<string name="drawer_close">Close navigation drawer</string>
<string name="action_websearch">Web search</string>
<string name="app_not_available">Sorry, there\'s no web browser available</string>
</resources>
When I tap on first four items, the respective images of planets dont show up in Navigation drawer but when I tap on last 4 Items (Starting from Jupiter) , It works fine