Home | History | Annotate | Download | only in nfc

Lines Matching refs:appInfo

77             for (PaymentAppInfo appInfo : appInfos) {
79 new PaymentAppPreference(getActivity(), appInfo, this);
80 preference.setTitle(appInfo.caption);
81 if (appInfo.banner != null) {
85 Log.e(TAG, "Couldn't load banner drawable of service " + appInfo.componentName);
142 PaymentAppInfo appInfo = (PaymentAppInfo) v.getTag();
143 if (appInfo.componentName != null) {
144 mPaymentBackend.setDefaultPaymentApp(appInfo.componentName);
206 private final PaymentAppInfo appInfo;
208 public PaymentAppPreference(Context context, PaymentAppInfo appInfo,
212 this.appInfo = appInfo;
221 radioButton.setChecked(appInfo.isDefault);
223 radioButton.setTag(appInfo);
226 banner.setImageDrawable(appInfo.banner);
228 banner.setTag(appInfo);