Merge "Guard against NPE" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
54225dfc65
@@ -203,7 +203,9 @@ public class KeyguardBouncer {
|
|||||||
Log.wtf(TAG, "onFullyShown when view was null");
|
Log.wtf(TAG, "onFullyShown when view was null");
|
||||||
} else {
|
} else {
|
||||||
mKeyguardView.onResume();
|
mKeyguardView.onResume();
|
||||||
mRoot.announceForAccessibility(mKeyguardView.getAccessibilityTitleForCurrentMode());
|
if (mRoot != null) {
|
||||||
|
mRoot.announceForAccessibility(mKeyguardView.getAccessibilityTitleForCurrentMode());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user