Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

programming languages - Write data in String.xml Android

I want to write some values from editText of activity in the file string.xml. I will explain with an example:

In the activity I have 2 editText and 1 button to submit the information. Imagine that the editText are for inserting NAME and SURNAME. I have the following code in string.xml

<string name="person_name"></string>
<string name="person_surname"></string>

At the begining, those fields will be empty but after submiting the info, I want to write the values obtained from the editTexts in that file.

Any suggestion?

Thanks in advance

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

That's not possible. Strings.xml is only for storing predefined strings. Use SharedPreferences to store this data.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...