diff --git a/core/java/android/app/RemoteAction.java b/core/java/android/app/RemoteAction.java index 47741c0215b45..c1746655da5e8 100644 --- a/core/java/android/app/RemoteAction.java +++ b/core/java/android/app/RemoteAction.java @@ -122,6 +122,7 @@ public final class RemoteAction implements Parcelable { public RemoteAction clone() { RemoteAction action = new RemoteAction(mIcon, mTitle, mContentDescription, mActionIntent); action.setEnabled(mEnabled); + action.setShouldShowIcon(mShouldShowIcon); return action; }