forked from organicmaps/organicmaps
[android] Added LinearLayout instead of Constraint
This commit is contained in:
parent
81a7549456
commit
f8eb932230
1 changed files with 2 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue