0

我需要实现这个功能:我有一些字符串。例如

发现泰迪熊 10

如果这个字符串不适合视图,它应该变成

找到泰迪熊...10

此外,如果我没有找到的物品的价值,它应该是

发现泰迪熊

发现泰迪熊...

ellipses="middle"不适合我。

找到下一个答案https://stackoverflow.com/a/12252144/1839853,但这段代码对我不起作用。

4

1 回答 1

0

这样做

TextView tv = (TextView) findViewById(R.id.tv1);
        tv.setText("Found teddy bears 10");
        doEllipse(tv,1);

public void doEllipse(final TextView tv, final int maxLine) {

        if (tv.getTag() == null) {
            tv.setTag(tv.getText());
        }
        ViewTreeObserver vto = tv.getViewTreeObserver();
        vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

            @SuppressWarnings("deprecation")
            @Override
            public void onGlobalLayout() {

                ViewTreeObserver obs = tv.getViewTreeObserver();
                obs.removeGlobalOnLayoutListener(this);
                if (maxLine <= 0) {
                    int lineEndIndex = tv.getLayout().getLineEnd(0);
                    String text = tv.getText().subSequence(0, lineEndIndex - 3) + "..."+tv.getText().subSequence(lineEndIndex - 3, lineEndIndex)+"";
                    tv.setText(text);

                } else if (tv.getLineCount() >= maxLine) {
                    int lineEndIndex = tv.getLayout().getLineEnd(maxLine - 1);
                    String text = tv.getText().subSequence(0, lineEndIndex - 3) + "..."+tv.getText().subSequence(lineEndIndex - 3, lineEndIndex)+"";
                    tv.setText(text);

                }
            }
        });

    }
于 2013-09-25T13:37:49.000 回答