英文:
How can I write to strings.xml file string-array style in Java?
问题
我想列举一些东西,但首先用户需要选择某个东西,然后内容会改变。我从strings.xml文件中检索数组是可以的。但我想要在strings.xml文件中写入一个string-array,但我不知道如何做到?我应该如何操作?
英文:
I want to list a couple of things but first user needs to choose sth and than content changes. I retrive array from strings.xml file that is ok. But I want to write strings.xml file an string-array but I can't do that? How can I do that?
答案1
得分: 0
这是不可能的。Strings.xml 仅用于存储预定义的字符串。您可以使用 SharedPreferences 或文件来存储您的数据。
英文:
That's not possible. Strings.xml is only for storing predefined strings.You can use SharedPreferences or file to store your data.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论