diff --git a/res/values/strings.xml b/res/values/strings.xml index 5cbdb603804..5a8e233d421 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -7639,8 +7639,8 @@ To make a payment using a work app: work profile must be turned on. - - you\u2019ll need to enter your work profile lock if you have one. + + you\u2019ll need to enter your work PIN, pattern, or password if you have one. How it works diff --git a/src/com/android/settings/nfc/PaymentBackend.java b/src/com/android/settings/nfc/PaymentBackend.java index 0cfed201e9c..021d673e152 100644 --- a/src/com/android/settings/nfc/PaymentBackend.java +++ b/src/com/android/settings/nfc/PaymentBackend.java @@ -133,7 +133,9 @@ public class PaymentBackend { appInfo.settingsComponent = null; } appInfo.description = service.getDescription(); - appInfo.icon = pm.getUserBadgedIcon(service.loadIcon(pm), appInfo.userHandle); + Drawable icon = (service.loadBanner(pm) != null) + ? service.loadBanner(pm) : service.loadIcon(pm); + appInfo.icon = pm.getUserBadgedIcon(icon, appInfo.userHandle); appInfos.add(appInfo); }