Please, explain me how can I add a new line in xml only (when I will use this string in program this must be single line)?
For example:
<string name="test">This
is
test
line</string>
But in program when I will use getString(R.string.test);
it will load single string without some new line characters: This is test line
.
I need this only for file formatting.