你好:(我试图使我的游戏类型:
当前分数:X
单位:Y秒(在他们之间,跳过一行。(这是我尝试使用的代码:
changingTextView.setText("current score:"+counter+ n- +"in"+TimeCounter+"seconds");
\n或/n对我不起作用。。我也试过:
changingTextView.setText("current score:"+counter+ <br> +"in"+TimeCounter+"seconds");
它也不起作用。。
试试这个:
changingTextView.setText("current score:"+counter+ System.getProperty("line.separator") +"in"+TimeCounter+"seconds");
尝试<br>
作为
changingTextView.setText(Html.fromHtml("current score:"+counter+ "<br>" +"in"+TimeCounter+"seconds"));
并确保您的\n在"中,以便它工作。
changingTextView.setText("current score:"+counter+ "n" + "-" +"in"+TimeCounter+"seconds");