Merge "Fix 1U notifications." into jb-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
e2c6d77c5f
@@ -539,14 +539,14 @@ public abstract class BaseStatusBar extends SystemUI implements
|
||||
if (expandedOneU != null) {
|
||||
SizeAdaptiveLayout.LayoutParams params =
|
||||
new SizeAdaptiveLayout.LayoutParams(expandedOneU.getLayoutParams());
|
||||
params.minHeight = minHeight;
|
||||
params.maxHeight = minHeight;
|
||||
params.minHeight = rowHeight;
|
||||
params.maxHeight = rowHeight;
|
||||
adaptive.addView(expandedOneU, params);
|
||||
}
|
||||
if (expandedLarge != null) {
|
||||
SizeAdaptiveLayout.LayoutParams params =
|
||||
new SizeAdaptiveLayout.LayoutParams(expandedLarge.getLayoutParams());
|
||||
params.minHeight = minHeight+1;
|
||||
params.minHeight = rowHeight+1;
|
||||
params.maxHeight = maxHeight;
|
||||
adaptive.addView(expandedLarge, params);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user