File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
core/java/android/content/res
policy/src/com/android/internal/policy/impl/keyguard Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1554,6 +1554,8 @@ private void clearDrawableCache(
15541554 public static void updateSystemConfiguration (Configuration config , DisplayMetrics metrics ,
15551555 CompatibilityInfo compat ) {
15561556 if (mSystem != null ) {
1557+ // TODO: Remove once b/7094175 is fixed
1558+ Slog .v (TAG , "updateSystemConfiguration: b/7094175 config=" + config );
15571559 mSystem .updateConfiguration (config , metrics , compat );
15581560 //Log.i(TAG, "Updated system resources " + mSystem
15591561 // + ": " + mSystem.getConfiguration());
Original file line number Diff line number Diff line change 2626import android .os .IBinder ;
2727import android .os .SystemProperties ;
2828import android .util .Log ;
29+ import android .util .Slog ;
2930import android .view .LayoutInflater ;
3031import android .view .View ;
3132import android .view .ViewGroup ;
@@ -165,6 +166,9 @@ private void inflateKeyguardView() {
165166 if (mKeyguardView != null ) {
166167 mKeyguardHost .removeView (mKeyguardView );
167168 }
169+ // TODO: Remove once b/7094175 is fixed
170+ Slog .d (TAG , "inflateKeyguardView: b/7094175 mContext.config="
171+ + mContext .getResources ().getConfiguration ());
168172 final LayoutInflater inflater = LayoutInflater .from (mContext );
169173 View view = inflater .inflate (R .layout .keyguard_host_view , mKeyguardHost , true );
170174 mKeyguardView = (KeyguardHostView ) view .findViewById (R .id .keyguard_host_view );
You can’t perform that action at this time.
0 commit comments