HomeSort by relevance Sort by last modified time
    Searched defs:customLabel (Results 1 - 14 of 14) sorted by null

  /packages/apps/TV/src/com/android/tv/ui/
InputBannerView.java 78 CharSequence customLabel = input.loadCustomLabel(getContext());
80 if (TextUtils.isEmpty(customLabel) || customLabel.equals(label)) {
84 mInputLabelTextView.setText(customLabel);
SelectInputView.java 285 CharSequence customLabel = input.loadCustomLabel(getContext());
287 if (TextUtils.isEmpty(customLabel) || customLabel.equals(label)) {
291 inputLabelView.setText(customLabel);
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java 103 final String customLabel = cursor.getString(PHONE_LABEL_COLUMN_INDEX);
106 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
LegacyPostalAddressListAdapter.java 104 final String customLabel = cursor.getString(POSTAL_LABEL_COLUMN_INDEX);
107 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
EmailAddressListAdapter.java 146 final String customLabel = cursor.getString(EmailQuery.EMAIL_LABEL);
149 label = Email.getTypeLabel(getContext().getResources(), type, customLabel);
MultiSelectEmailAddressesListAdapter.java 179 final String customLabel = cursor.getString(EmailQuery.EMAIL_LABEL);
182 label = Email.getTypeLabel(getContext().getResources(), type, customLabel);
MultiSelectPhoneNumbersListAdapter.java 179 final String customLabel = cursor.getString(PhoneQuery.PHONE_LABEL);
182 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
PostalAddressListAdapter.java 137 final String customLabel = cursor.getString(PostalQuery.POSTAL_LABEL);
140 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
PhoneNumberListAdapter.java 471 final String customLabel = cursor.getString(PhoneQuery.PHONE_LABEL);
474 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
InputOptionsFragment.java 99 final CharSequence customLabel = mCustomLabels.get(mInputInfo.getId());
109 final boolean nameMatch = TextUtils.equals(namePref.getTitle(), customLabel);
116 final boolean nameIsDefault = TextUtils.isEmpty(customLabel);
120 nameIsDefault ? defaultLabel : customLabel);
124 mNameCustomPref.setSummary(customLabel);
InputsFragment.java 198 String customLabel;
200 customLabel = getString(R.string.inputs_hide);
202 customLabel = mCustomLabels.get(inputInfo.getId());
203 if (TextUtils.isEmpty(customLabel)) {
204 customLabel = inputInfo.loadLabel(getContext()).toString();
207 setSummary(customLabel);
  /packages/apps/TV/src/com/android/tv/search/
TvProviderSearch.java 436 String customLabel = canonicalizeLabel(input.loadCustomLabel(mContext));
437 if (TextUtils.equals(query, label) || TextUtils.equals(query, customLabel)) {
453 String customLabel = canonicalizeLabel(input.loadCustomLabel(mContext));
455 (customLabel != null && customLabel.contains(query))) {
  /packages/apps/Dialer/java/com/android/contacts/common/list/
PhoneNumberListAdapter.java 375 final String customLabel = cursor.getString(PhoneQuery.PHONE_LABEL);
378 label = Phone.getTypeLabel(mContext.getResources(), type, customLabel);
  /packages/apps/TV/src/com/android/tv/util/
Utils.java 609 CharSequence customLabel = input.loadCustomLabel(context);
610 String label = (customLabel == null) ? null : customLabel.toString();
    [all...]

Completed in 212 milliseconds