Home
last modified time | relevance | path

Searched refs:mActionsToShowInCompact (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/app/
DNotification.java8053 private int[] mActionsToShowInCompact = null; field in Notification.Builder.MediaStyle
8074 mActionsToShowInCompact = actions; in setShowActionsInCompactView()
8133 if (mActionsToShowInCompact != null) { in addExtras()
8134 extras.putIntArray(EXTRA_COMPACT_ACTIONS, mActionsToShowInCompact); in addExtras()
8149 mActionsToShowInCompact = extras.getIntArray(EXTRA_COMPACT_ACTIONS); in restoreFromExtras()
8207 final int numActionsToShow = mActionsToShowInCompact == null in makeMediaContentView()
8209 : Math.min(mActionsToShowInCompact.length, MAX_MEDIA_BUTTONS_IN_COMPACT); in makeMediaContentView()
8217 final Action action = mBuilder.mActions.get(mActionsToShowInCompact[i]); in makeMediaContentView()
8241 int actionsInCompact = mActionsToShowInCompact == null in makeMediaBigContentView()
8243 : Math.min(mActionsToShowInCompact.length, MAX_MEDIA_BUTTONS_IN_COMPACT); in makeMediaBigContentView()