我现在不能尝试这个想法,但让我们试一试吧!根据这篇文章,您可以使用以下方法来确定字符串是否适合文本视图。
private boolean isTooLarge (TextView text, String newText) {
float textWidth = text.getPaint().measureText(newText);
return (textWidth >= text.getMeasuredWidth ());
}
所以一个想法,如果文本总是相同的,您可以手动定义每个文本视图的初始值,然后当您增加或减少字体时重新计算它,删除或添加单词。
如果不能手动输入初始值,您可以执行以下操作:
String wordsInTextview = new String();
int lastUsedWord= 0;
int totalNumberOfWords = text.size();
for (int i=lastUsedWord;i<totalNumberOfWords;i++) {
if !(isTooLarge(TextView,wordsInTextview)) {
wordsInTextview = wordsInTextview + text(i); // add the words to be shown
} else {
TextView.setText(wordsInTextView);
lastUsedWord= i;
wordsInTextView = new String(); // no idea if this will erase the textView but shouldn't be hard to fix
}
}
您还需要存储 textView 的第一个单词的位置,因此当您调整文本大小时,您知道从哪里开始!
int firstWordOnTextView = TextView.getText().toString().split(" ")[0]
当它调整大小时,您可以使用相同的方法来计算屏幕上的文本。
lastUsedWord = firstWordOnTextView;
如果您想更快,您可以跟踪每页上有多少单词,进行平均,然后在运行几次后始终从那里统计您的循环。或之前的几句话,以避免不得不重复回来。
如果您不必一次显示太多页面,我相信这是一个合理的解决方案!
对不起,代码中的错误我现在没有地方可以尝试!对此解决方案有何评论?非常有趣的问题!