I have a textView and I want to display two different variables at the same time, each on one line. Here is what I have so far
TextView.setText("You answered :" + " " + correct + "correct" + '\n');
TextView.setText("You answered: " + " " + wrong + "incorrect");
this only displays the last line and not both lines of code in the textView. Can anyone tell me how i can go about displaying both of these in the same textView at the same time on 2 different lines? Much appreciated.