summaryrefslogtreecommitdiffstats
path: root/policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java
diff options
context:
space:
mode:
authorCraig Mautner <cmautner@google.com>2012-09-17 16:40:28 -0700
committerCraig Mautner <cmautner@google.com>2012-09-18 10:19:49 -0700
commit0cbfcffe7b99eea85dc17e92ef204035fa6fd4f9 (patch)
tree17bd91fdcb6fb85ae3f96204683ea6a0ee81336f /policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java
parent04d5b9fbd1f9b8c7fa4af402166028c685574d62 (diff)
downloadframeworks_base-0cbfcffe7b99eea85dc17e92ef204035fa6fd4f9.zip
frameworks_base-0cbfcffe7b99eea85dc17e92ef204035fa6fd4f9.tar.gz
frameworks_base-0cbfcffe7b99eea85dc17e92ef204035fa6fd4f9.tar.bz2
Add debug for b/7094175.
Change-Id: Iec83b9350bfeb804dfe3da25986138c2dbaa6d45
Diffstat (limited to 'policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java')
-rw-r--r--policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java b/policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java
index d9088e0..5a825bd 100644
--- a/policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java
+++ b/policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java
@@ -26,6 +26,7 @@ import android.graphics.PixelFormat;
import android.os.IBinder;
import android.os.SystemProperties;
import android.util.Log;
+import android.util.Slog;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
@@ -166,6 +167,9 @@ public class KeyguardViewManager {
if (mKeyguardView != null) {
mKeyguardHost.removeView(mKeyguardView);
}
+ // TODO: Remove once b/7094175 is fixed
+ Slog.d(TAG, "inflateKeyguardView: b/7094175 mContext.config="
+ + mContext.getResources().getConfiguration());
final LayoutInflater inflater = LayoutInflater.from(mContext);
View view = inflater.inflate(R.layout.keyguard_host_view, mKeyguardHost, true);
mKeyguardView = (KeyguardHostView) view.findViewById(R.id.keyguard_host_view);