Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is better to use in my android program:

in mainActivity.java:

String[] st = {"Value1","Value2"}; 

or

in mainActivity.java:

String[] st = (String[]) getResources().getStringArray(R.array.Array1); 

And in strings.xml:

<string-array name="Array1">
    <item >Value1</item>
    <item >Value2</item>
</string-array>
share|improve this question
2  
Please accept an answer if you are satisfied with any of the answer. :) – Shrikant Jun 4 '12 at 7:50

3 Answers

up vote 6 down vote accepted

Well I will use the second approch, if you need to localize (translate it in more languages) your strings.

share|improve this answer

The second solution is better, because you can use different languages later (english, german etc.) http://developer.android.com/guide/topics/resources/localization.html

share|improve this answer

I will also suggest to use the 2nd one as others suggested. Additionally it also helps you, if in case you want to change the elements of the array or if you want to add/delete elements of the array. In this case you don't need to change the source code again and recompile it. Instead you just need to change the XML file only and its done.

share|improve this answer
but remember to change it in each language or you might get errors – banzai86 Jun 4 '12 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.