如果TextView中的文本比可用空间长,那么如何获取剩余的行?

时间:2010-09-24 14:12:17

标签: android android-widget

我有一个很长的文本,我希望它与TextView一起显示。我的文字比可用空间长得多。但是我不想使用滚动,但ViewFlipper要翻到下一页。如何从第一个TextView中检索未显示的行,因为视图是短的,以便我可以将它们粘贴到下一个TextView中?

编辑:我找到了解决问题的方法。我只需要使用带有StaticLayout的自定义视图,如下所示:

public ReaderColumView(Context context, Typeface typeface, String cText) {
        super(context);
        Display display = ((WindowManager) context.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
        dWidth = display.getWidth(); 
        dHeight = display.getHeight();

        contentText = cText;

        tp = new TextPaint();
        tp.setTypeface(typeface);
        tp.setTextSize(25);
        tp.setColor(Color.BLACK);
        tp.setAntiAlias(true);

        StaticLayout measureLayout = new StaticLayout(contentText, tp, 440, Alignment.ALIGN_NORMAL, 1, 2, true);
        Boolean reachedEndOfScreen = false;
        int line = 0;
        while (!reachedEndOfScreen) {
            if (measureLayout.getLineBottom(line) > dHeight-30) {
            reachedEndOfScreen = true;
            fittedText = contentText.substring(0, measureLayout.getLineEnd(line-1));
            setLeftoverText(contentText.substring(measureLayout.getLineEnd(line-1)));
            }

            line++;

        }
    }
protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        StaticLayout textLayout = new  StaticLayout(fittedText, tp, 440, Alignment.ALIGN_NORMAL, 1, 2, true);
        canvas.translate(20,20);
        textLayout.draw(canvas);
    }

这还没有优化,但你明白了。 我希望它可以帮助像我一样有类似问题的人。

1 个答案:

答案 0 :(得分:0)

在答案中,您可以使用StaticLayout来测量和绘制文本。然而,

  • 你不应该在onDraw期间创建一个StaticLayout,它非常昂贵,特别是对于长文本。相反,您应该在onMeasure期间创建一次并重复使用它。
  • 对于你的while循环寻找结束行(while(!reachEndOfScreen)),你可以使用StaticLayout.getLineForVertical(int offset)。
  • 您可以使用索引代替子字符串或leftOverText,并将这些索引传递给每个页面的StaticLayout。