Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DNotification.java2361 Bundle wearableBundle = action.getExtras().getBundle(EXTRA_WEARABLE_EXTENSIONS); in WearableExtender() local
2362 if (wearableBundle != null) { in WearableExtender()
2363 mFlags = wearableBundle.getInt(KEY_FLAGS, DEFAULT_FLAGS); in WearableExtender()
2364 mInProgressLabel = wearableBundle.getCharSequence(KEY_IN_PROGRESS_LABEL); in WearableExtender()
2365 mConfirmLabel = wearableBundle.getCharSequence(KEY_CONFIRM_LABEL); in WearableExtender()
2366 mCancelLabel = wearableBundle.getCharSequence(KEY_CANCEL_LABEL); in WearableExtender()
2377 Bundle wearableBundle = new Bundle(); in extend() local
2380 wearableBundle.putInt(KEY_FLAGS, mFlags); in extend()
2383 wearableBundle.putCharSequence(KEY_IN_PROGRESS_LABEL, mInProgressLabel); in extend()
2386 wearableBundle.putCharSequence(KEY_CONFIRM_LABEL, mConfirmLabel); in extend()
[all …]