[android] Added LinearLayout instead of Constraint

This commit is contained in:
Dmitry Donskoy 2018-07-27 17:58:24 +03:00 committed by Arsentiy Milchakov
parent 81a7549456
commit f8eb932230

View file

@ -145,8 +145,6 @@ public class PlaceholderView extends LinearLayout
int childrenTextTotalHeight = calcTotalTextChildrenHeight(widthMeasureSpec, heightMeasureSpec);
final int defHeight = getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec);
final int defWidth = getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec);
MarginLayoutParams imgParams = (MarginLayoutParams) mImage.getLayoutParams();
int potentialHeight =
defHeight - getPaddingBottom() - getPaddingTop() - childrenTextTotalHeight -
@ -165,7 +163,8 @@ public class PlaceholderView extends LinearLayout
UiUtils.showIf(isImageSpaceAllowed, mImage);
final int height = childrenTotalHeight + getPaddingTop() + getPaddingBottom();
setMeasuredDimension(defWidth, height);
final int width = getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec);
setMeasuredDimension(width, height);
}
private int calcTotalTextChildrenHeight(int widthMeasureSpec, int heightMeasureSpec)