Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DNotification.java8311 private int[] mActionsToShowInCompact = null; field in Notification.Builder.MediaStyle
8332 mActionsToShowInCompact = actions; in setShowActionsInCompactView()
8390 if (mActionsToShowInCompact != null) { in addExtras()
8391 extras.putIntArray(EXTRA_COMPACT_ACTIONS, mActionsToShowInCompact); in addExtras()
8406 mActionsToShowInCompact = extras.getIntArray(EXTRA_COMPACT_ACTIONS); in restoreFromExtras()
8466 final int numActionsToShow = mActionsToShowInCompact == null in makeMediaContentView()
8468 : Math.min(mActionsToShowInCompact.length, MAX_MEDIA_BUTTONS_IN_COMPACT); in makeMediaContentView()
8476 final Action action = mBuilder.mActions.get(mActionsToShowInCompact[i]); in makeMediaContentView()
8504 int actionsInCompact = mActionsToShowInCompact == null in makeMediaBigContentView()
8506 : Math.min(mActionsToShowInCompact.length, MAX_MEDIA_BUTTONS_IN_COMPACT); in makeMediaBigContentView()