From d6e836c4a0ebf3af571c46986d324c1bd599ba95 Mon Sep 17 00:00:00 2001 From: John Spurlock Date: Mon, 18 Nov 2013 14:14:49 -0500 Subject: Use scaled display size in wallpaper constraint. Bug:11596190 Change-Id: Icc81beeea2e71144c2e5330b047e4781a23d7449 --- services/java/com/android/server/WallpaperManagerService.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'services/java') diff --git a/services/java/com/android/server/WallpaperManagerService.java b/services/java/com/android/server/WallpaperManagerService.java index e25470c..e6b6b93 100644 --- a/services/java/com/android/server/WallpaperManagerService.java +++ b/services/java/com/android/server/WallpaperManagerService.java @@ -640,11 +640,9 @@ class WallpaperManagerService extends IWallpaperManager.Stub { private Point getDefaultDisplaySize() { Point p = new Point(); - try { - mIWindowManager.getInitialDisplaySize(Display.DEFAULT_DISPLAY, p); - } catch (RemoteException e) { - // not remote - } + WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE); + Display d = wm.getDefaultDisplay(); + d.getRealSize(p); return p; } -- cgit v1.1