File tree Expand file tree Collapse file tree
services/core/java/com/android/server/am Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -530,13 +530,13 @@ boolean isNotResolverActivity() {
530530
531531 AttributeCache .Entry ent = AttributeCache .instance ().get (packageName ,
532532 realTheme , com .android .internal .R .styleable .Window , userId );
533- final boolean translucent = ent .array .getBoolean (
533+ final boolean translucent = ent != null && ( ent .array .getBoolean (
534534 com .android .internal .R .styleable .Window_windowIsTranslucent , false )
535535 || (!ent .array .hasValue (
536536 com .android .internal .R .styleable .Window_windowIsTranslucent )
537537 && ent .array .getBoolean (
538538 com .android .internal .R .styleable .Window_windowSwipeToDismiss ,
539- false ));
539+ false ))) ;
540540 fullscreen = ent != null && !ent .array .getBoolean (
541541 com .android .internal .R .styleable .Window_windowIsFloating , false )
542542 && !translucent ;
You can’t perform that action at this time.
0 commit comments