Hello, In my app is the ability to read a file. This works perfectly, but there's a problem. No line breaks or whatever they are called get added when I append the file's contents to my big EditText, so this:
function hmm(){
echo 'Hello, PHP!';
}
would turn into this:
function hmm(){ echo 'Hello, PHP!'; }
How can I stop this and make it appear in the EditText as it appears in the file?
Thanks for reading, Alex.
UPDATE: REALLY sorry for wasting your time, I went stupid and didn't think about adding "\n" after the while loop has appended each line.