Loading packages/SystemUI/src/com/android/systemui/clipboardoverlay/ClipboardOverlayController.java +2 −1 Original line number Diff line number Diff line Loading @@ -262,7 +262,8 @@ public class ClipboardOverlayController { resetActionChips(); for (RemoteAction action : actions) { Intent targetIntent = action.getActionIntent().getIntent(); if (!TextUtils.equals(source, targetIntent.getComponent().getPackageName())) { ComponentName component = targetIntent.getComponent(); if (component != null && !TextUtils.equals(source, component.getPackageName())) { OverlayActionChip chip = constructActionChip(action); mActionContainer.addView(chip); mActionChips.add(chip); Loading Loading
packages/SystemUI/src/com/android/systemui/clipboardoverlay/ClipboardOverlayController.java +2 −1 Original line number Diff line number Diff line Loading @@ -262,7 +262,8 @@ public class ClipboardOverlayController { resetActionChips(); for (RemoteAction action : actions) { Intent targetIntent = action.getActionIntent().getIntent(); if (!TextUtils.equals(source, targetIntent.getComponent().getPackageName())) { ComponentName component = targetIntent.getComponent(); if (component != null && !TextUtils.equals(source, component.getPackageName())) { OverlayActionChip chip = constructActionChip(action); mActionContainer.addView(chip); mActionChips.add(chip); Loading