0

I'm making an android app for my school project at it seems like its going to have a lot of things (like strings) but I've only seen people use one res/string.xml file. Is there a way to organize and categorize the strings I'm going to use for each activity? I don't want the string.xml file to become too big that it will be difficult for me to locate string resources.

user3332929
  • 175
  • 1
  • 1
  • 6

1 Answers1

3

You can have several files for strings as you want. You just have to put each file in : res/values/filename.xml You can find more in the documentation : http://developer.android.com/guide/topics/resources/string-resource.html#String

Paul
  • 185
  • 4