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
xmlns:tools="http://schemas.android.com/tools"
\n
for new line and \t
for space like tab.Example :
for \n : android:text="Welcome back ! \nPlease login to your account agilanbu"
for \t : android:text="Welcome back ! \tPlease login to your account agilanbu"