其他分享
首页 > 其他分享> > 如何在Android的TextView中找出文本换行到多少行?

如何在Android的TextView中找出文本换行到多少行?

作者:互联网

我有一个长字符串,可以换成多行,而行数则根据所使用的Android设备的大小而有所不同.有没有办法知道文本换行到多少行?

解决方法:

您可以使用Layout类之一:

Layout layout = new StaticLayout(text, /* other stuff--see docs */);
int nLines = layout.getLineCount();

标签:text,word-wrap,string,android,textview
来源: https://codeday.me/bug/20191127/2075745.html