我以不同的时间间隔以编程方式将符号附加到TextView。有没有办法在这些符号的同时添加文本?例如:
for(int i = 0; i < 5; i++){
tv.append(Integer.toString(i));
}
这会在我的TextView中提供0 1 2 3 4
,但是还有一种方法可以在这些数字之上添加内容,例如:
a b c d e
0 1 2 3 4
其中字母小于数字
答案 0 :(得分:0)
String [] another = new String [] { "a", "b", "c", "d", "e" };
String top = String.join("", another); //abcde
tv.setText(top +"\n" + tv.getText());
tv.setMaxLines(2); // you might change 2 to 20 or whatever