3

我有一个包含多行的长字符串,并且行数因所使用的 Android 设备的大小而异。有没有办法知道文本换行到多少行?

4

1 回答 1

3

您可以使用Layout类之一:

Layout layout = new StaticLayout(text, /* other stuff--see docs */);
int nLines = layout.getLineCount();
于 2012-09-14T21:28:52.197 回答