diff --git a/res/layout/quote_view.xml b/res/layout/quote_view.xml index fd68a25627..cb25eabbf3 100644 --- a/res/layout/quote_view.xml +++ b/res/layout/quote_view.xml @@ -61,7 +61,7 @@ tools:text="Photo" tools:visibility="visible" /> - { + int maxLines = TextViewCompat.getMaxLines(EmojiTextView.this); + if (maxLines <= 0) { + return; + } + int lineCount = getLineCount(); + if (lineCount > maxLines) { + int overflowStart = getLayout().getLineStart(maxLines - 1); + CharSequence overflow = getText().subSequence(overflowStart, getText().length()); + CharSequence ellipsized = TextUtils.ellipsize(overflow, getPaint(), getWidth(), TextUtils.TruncateAt.END); + + SpannableStringBuilder newContent = new SpannableStringBuilder(); + newContent.append(getText().subSequence(0, overflowStart)) + .append(ellipsized); + super.setText(newContent); + } + }); + } } private boolean useSystemEmoji() { return TextSecurePreferences.isSystemEmojiPreferred(getContext()); } - private void setTextEllipsized(final @Nullable CharSequence source) { - super.setText(needsEllipsizing ? ViewUtil.ellipsize(source, this) : source, BufferType.SPANNABLE); - } - @Override public void invalidateDrawable(@NonNull Drawable drawable) { if (drawable instanceof EmojiDrawable) invalidate(); else super.invalidateDrawable(drawable); } - @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { - final int size = MeasureSpec.getSize(widthMeasureSpec); - final int mode = MeasureSpec.getMode(widthMeasureSpec); - if (!useSystemEmoji() && - getEllipsize() == TruncateAt.END && - !TextUtils.isEmpty(source) && - (mode == MeasureSpec.AT_MOST || mode == MeasureSpec.EXACTLY) && - getPaint().breakText(source, 0, source.length()-1, true, size, null) != source.length()) - { - needsEllipsizing = true; - FontMetricsInt font = getPaint().getFontMetricsInt(); - super.onMeasure(MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY), - MeasureSpec.makeMeasureSpec(Math.abs(font.top - font.bottom), MeasureSpec.EXACTLY)); - } else { - needsEllipsizing = false; - super.onMeasure(widthMeasureSpec, heightMeasureSpec); - } - } - @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { - if (changed && !useSystemEmoji()) setTextEllipsized(source); + if (changed && !useSystemEmoji()) { + super.setText(source, BufferType.SPANNABLE); + } + super.onLayout(changed, left, top, right, bottom); } diff --git a/src/org/thoughtcrime/securesms/util/ViewUtil.java b/src/org/thoughtcrime/securesms/util/ViewUtil.java index 6a561422dd..fc58cf582b 100644 --- a/src/org/thoughtcrime/securesms/util/ViewUtil.java +++ b/src/org/thoughtcrime/securesms/util/ViewUtil.java @@ -28,9 +28,6 @@ import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.view.ViewCompat; import android.support.v4.view.animation.FastOutSlowInInterpolator; -import android.text.TextUtils; -import android.text.TextUtils.TruncateAt; -import android.util.DisplayMetrics; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; @@ -97,17 +94,6 @@ public class ViewUtil { parent.addView(toAdd, childIndex > -1 ? childIndex : defaultIndex); } - public static CharSequence ellipsize(@Nullable CharSequence text, @NonNull TextView view) { - if (TextUtils.isEmpty(text) || view.getWidth() == 0 || view.getEllipsize() != TruncateAt.END) { - return text; - } else { - return TextUtils.ellipsize(text, - view.getPaint(), - view.getWidth() - view.getPaddingRight() - view.getPaddingLeft(), - TruncateAt.END); - } - } - @SuppressWarnings("unchecked") public static T inflateStub(@NonNull View parent, @IdRes int stubId) { return (T)((ViewStub)parent.findViewById(stubId)).inflate();