Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DNotification.java1914 Bundle wearableBundle = action.getExtras().getBundle(EXTRA_WEARABLE_EXTENSIONS); in WearableExtender() local
1915 if (wearableBundle != null) { in WearableExtender()
1916 mFlags = wearableBundle.getInt(KEY_FLAGS, DEFAULT_FLAGS); in WearableExtender()
1917 mInProgressLabel = wearableBundle.getCharSequence(KEY_IN_PROGRESS_LABEL); in WearableExtender()
1918 mConfirmLabel = wearableBundle.getCharSequence(KEY_CONFIRM_LABEL); in WearableExtender()
1919 mCancelLabel = wearableBundle.getCharSequence(KEY_CANCEL_LABEL); in WearableExtender()
1930 Bundle wearableBundle = new Bundle(); in extend() local
1933 wearableBundle.putInt(KEY_FLAGS, mFlags); in extend()
1936 wearableBundle.putCharSequence(KEY_IN_PROGRESS_LABEL, mInProgressLabel); in extend()
1939 wearableBundle.putCharSequence(KEY_CONFIRM_LABEL, mConfirmLabel); in extend()
[all …]