I have two string that store in string.xml like this
<string name="Domain">http://discovervideo.com/station/index.guid=</string>
<string name="Guid">default</string>
and two EditText t1 , t2 while
t1 = (EditText) findViewById(R.id.server1);
t2 = (EditText) findViewById(R.id.signage1);
I want when user input this two string it update to string.xml where I used them in another activity like
String Domain = getResources().getString(R.string.Domain);
String GUID = getResources().getString(R.string.Guid);
It is possible to do that?