0

我有一个 TextView,它有 10 行作为属性和两个变量,Alpha 和 Beta。

我希望 Alpha 使用 TextView 的前两行,而 Beta 使用其余的行或 3-10。

如何编写我的 Java 代码?我找不到直接解决 Lines 集合的方法。

这不起作用:

TextView.setText.Lines[1]("This is a test\n for Alpha");
TextView.setText.Lines[3]("This is a test\n for Beta\n that has more lines\n than Alpha");

钛三雷

4

1 回答 1

0

你不能这样做,线条取决于 TextView 的宽度。如果需要,可以使用两个 TextView,一个 2 行,另一个 8 行。

于 2013-06-22T21:33:48.560 回答