My problem:
In my application I read the address details from a SQLite database & display the result in a textview.
My sqlite sample address - 41 South Station Road,'\n' Colchester, '\n' CO1 1RQ
But the next line using '\n' is not working. It prints directly '\n' in the textview.
My output:
What I have tried
From this question:
41 South Station Road,"\\n" Colchester, "\\n" CO1 1RQ
41 South Station Road,"\n" Colchester, "\n" CO1 1RQ
41 South Station Road,\n Colchester, \n CO1 1RQ
All of the above are not working.