So, in my strings.xml I have a very long text which I want to format somehow. How can I put a tab before the first sentence of the text? Also, what is the code for new line? Tha
add this line at the top of string.xml
and use
'\n'
from where you want to break your line.
ex. Hello world. \n its awesome.
Hello world. \n its awesome.
Output:
Hello world. its awesome.