Android - 在TextView中的其他文本之上附加文本

时间:2016-06-13 12:06:09

标签: android

我以不同的时间间隔以编程方式将符号附加到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

其中字母小于数字

1 个答案:

答案 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