am a1ae3c09: Merge "Fixing issue where smallest screen dim was not taking dpi into account." into ics-scoop
* commit 'a1ae3c0992c256671b8daf5101e8e2051e32686a': Fixing issue where smallest screen dim was not taking dpi into account.
This commit is contained in:
commit
816e1f7c1b
|
@ -279,9 +279,11 @@ public class Workspace extends SmoothPagedView
|
|||
// landscape
|
||||
TypedArray actionBarSizeTypedArray =
|
||||
context.obtainStyledAttributes(new int[] { android.R.attr.actionBarSize });
|
||||
DisplayMetrics displayMetrics = res.getDisplayMetrics();
|
||||
final float actionBarHeight = actionBarSizeTypedArray.getDimension(0, 0f);
|
||||
final float systemBarHeight = res.getDimension(R.dimen.status_bar_height);
|
||||
final float smallestScreenDim = res.getConfiguration().smallestScreenWidthDp;
|
||||
final float smallestScreenDim = res.getConfiguration().smallestScreenWidthDp *
|
||||
displayMetrics.density;
|
||||
|
||||
cellCountX = 1;
|
||||
while (CellLayout.widthInPortrait(res, cellCountX + 1) <= smallestScreenDim) {
|
||||
|
|
Loading…
Reference in New Issue