summaryrefslogtreecommitdiffstats
path: root/mobile/android/base/java/org/mozilla/gecko/widget/EllipsisTextView.java
blob: 44f88e668f5ef45a5a356d0490b9cc46f53e574a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.widget;

import org.mozilla.gecko.R;

import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.widget.TextView;

/**
 * Text view that correctly handles maxLines and ellipsizing for Android < 2.3.
 */
public class EllipsisTextView extends TextView {
    private final String ellipsis;

    private final int maxLines;
    private CharSequence originalText;

    public EllipsisTextView(Context context) {
        this(context, null);
    }

    public EllipsisTextView(Context context, AttributeSet attrs) {
        this(context, attrs, android.R.attr.textViewStyle);
    }

    public EllipsisTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);

        ellipsis = getResources().getString(R.string.ellipsis);

        TypedArray a = context.getTheme()
            .obtainStyledAttributes(attrs, R.styleable.EllipsisTextView, 0, 0);
        maxLines = a.getInteger(R.styleable.EllipsisTextView_ellipsizeAtLine, 1);
        a.recycle();
    }

    public void setOriginalText(CharSequence text) {
        originalText = text;
        setText(text);
    }

    @Override
    public void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);

        // There is extra space, start over with the original text
        if (getLineCount() < maxLines) {
            setText(originalText);
        }

        // If we are over the max line attribute, ellipsize
        if (getLineCount() > maxLines) {
            final int endIndex = getLayout().getLineEnd(maxLines - 1) - 1 - ellipsis.length();
            final String text = getText().subSequence(0, endIndex) + ellipsis;
            // Make sure that we don't change originalText
            setText(text);
        }
    }
}