检查字符串是否完整显示在弹出窗口中 window

Checking if string is complety shown in popup window

有没有标准的方法来做到这一点?我的弹出窗口 window 有 maxsize,如果它太长我想剪掉它。 目前我正在做

   if(txt.length()>320)
        {
            txt = txt.substring(0,320)+"...";
        }

但这看起来很粗糙,有时由于段落的原因不起作用。

您可以在属性下面定义到textview。

android:ellipsize="end"