To get a string from the resourses in android using java i use
Resources res=this.getResources();
String ch=res.getString(R.string.naeme);
but now i want to add a string to strings.xml using java code , how to do that ?
To get a string from the resourses in android using java i use
Resources res=this.getResources();
String ch=res.getString(R.string.naeme);
but now i want to add a string to strings.xml using java code , how to do that ?