44 lines
1.5 KiB
Java
44 lines
1.5 KiB
Java
package androidx.appcompat.widget;
|
|
|
|
import android.R;
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.text.Layout;
|
|
import android.util.AttributeSet;
|
|
import o.SYO;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class DialogTitle extends AppCompatTextView {
|
|
public DialogTitle(Context context, AttributeSet attributeSet, int i) {
|
|
super(context, attributeSet, i);
|
|
}
|
|
|
|
public DialogTitle(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
|
|
public DialogTitle(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
@Override // androidx.appcompat.widget.AppCompatTextView, android.widget.TextView, android.view.View
|
|
public void onMeasure(int i, int i2) {
|
|
int lineCount;
|
|
super.onMeasure(i, i2);
|
|
Layout layout = getLayout();
|
|
if (layout == null || (lineCount = layout.getLineCount()) <= 0 || layout.getEllipsisCount(lineCount - 1) <= 0) {
|
|
return;
|
|
}
|
|
setSingleLine(false);
|
|
setMaxLines(2);
|
|
TypedArray obtainStyledAttributes = getContext().obtainStyledAttributes(null, SYO.ZqN.TextAppearance, R.attr.textAppearanceMedium, R.style.TextAppearance.Medium);
|
|
int dimensionPixelSize = obtainStyledAttributes.getDimensionPixelSize(SYO.ZqN.TextAppearance_android_textSize, 0);
|
|
if (dimensionPixelSize != 0) {
|
|
setTextSize(0, dimensionPixelSize);
|
|
}
|
|
obtainStyledAttributes.recycle();
|
|
super.onMeasure(i, i2);
|
|
}
|
|
}
|