最后一个单词显示在textview中

时间:2012-05-08 13:25:15

标签: android textview

我将在Android应用中的几个页面上显示完整的文本文档。每个页面都包含一个TextView控件,负责显示文本。它还包含一个下一个按钮,该按钮负责更新textview并按照文本的最后显示的部分结束。
问题是如何在TextView的可显示区域中找到最后显示的单词?
注意:在这个应用程序中,textView 不是应该滚动或使用ellipsize。 还必须注意,文本化可以增加或减少。 要更好地了解情况: 要显示的示例文本:

  

这是全文。在第一页它刚刚结束这里,必须是   从这里开始。

这是其显示的示例说明。问题是如何找到第1页中显示的最后一个单词“here”? And this is the sample illustration of the its display. The question is how to find word "here" as last word displayed in page 1?

2 个答案:

答案 0 :(得分:1)

我现在不能尝试这个想法,但让我们试一试!根据{{​​3}},您可以使用以下方法查明字符串是否适合文本视图。

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;

如果你想要更快,你可以跟踪你在每个页面上有多少单词,做一个平均值,并在几次运行后总是从那里统计你的循环。或者之前的几句话,以避免不得不迭代。

如果您不必一次显示太多页面,我相信这是一个合理的解决方案!

很抱歉代码中的错误我现在没有在哪里尝试!有关此解决方案的任何评论非常有趣的问题!

答案 1 :(得分:1)

最后,我开发了一段代码,可以找到最后显示的单词。 考虑到我们将使用属性宽度高度作为其大小的文本视图,并将dp中的 textSize 作为文本大小,函数formatStringToFitInTextView评估textview中最后显示的单词并将其作为函数输出返回。 在下面的示例中,我们将SERIF字体视为TextView字体。

String formatStringToFitInTextView(int width, int heigth, String inputText,float textSize) {
    String[] words;
    String lastWord = "";
    String finalString="";
    StaticLayout stLayout;
    int i,numberOfWords;
    int h;
    Typeface tf = Typeface.SERIF;
    TextPaint tp = new TextPaint();
    tp.setTypeface(tf );
    tp.setTextSize(textSize);   //COMPLEX_UNIT_DP

    words = inputText.split(" ");   //split input text to words
    numberOfWords = words.length;
    for (i=0;i<numberOfWords;i++){ 
        stLayout= measure(tp,finalString+words[i]+" ",width);
        h=stLayout.getHeight(); 
        if (stLayout.getHeight() > heigth) break;
        finalString += words[i]+" ";
        lastWord  = words[i];
    }

    return lastWord;
}
StaticLayout measure( TextPaint textPaint, String text, Integer wrapWidth ) {
    int boundedWidth = Integer.MAX_VALUE;
    if( wrapWidth != null && wrapWidth > 0 ) {
      boundedWidth = wrapWidth;
    }
    StaticLayout layout = new StaticLayout( text, textPaint, boundedWidth, Alignment.ALIGN_NORMAL, 1.0f, 0.0f, false );
    return layout;
}

执行操作的总逻辑是将输入文本拆分为单词并逐字添加到textview,直到它填满提供的高度和宽度,然后将最后添加的单词作为最后显示的单词返回。

注意:感谢Moritz,我使用了来自this answer的功能测量。