HomeSort by relevance Sort by last modified time
    Searched refs:accountLabel (Results 1 - 7 of 7) sorted by null

  /packages/apps/Dialer/java/com/android/dialer/calllogutils/
PhoneCallDetails.java 145 * Construct the "on {accountLabel} via {viaNumber}" accessibility description for the account
146 * list item, depending on the existence of the accountLabel and viaNumber.
149 * @param accountLabel The {@link PhoneAccount} label that this call is being placed with.
153 Resources resources, @Nullable String viaNumber, @Nullable CharSequence accountLabel) {
155 if ((!TextUtils.isEmpty(viaNumber)) && !TextUtils.isEmpty(accountLabel)) {
158 R.string.description_via_number_phone_account, accountLabel, viaNumber);
167 } else if (!TextUtils.isEmpty(accountLabel)) {
169 resources.getString(R.string.description_phone_account), accountLabel);
  /packages/apps/Contacts/src/com/android/contacts/editor/
AccountHeaderPresenter.java 132 final String accountLabel = getAccountLabel(mCurrentAccount);
135 addAccountSelector(accountLabel);
137 addAccountHeader(accountLabel);
141 private void addAccountHeader(String accountLabel) {
146 mAccountHeaderName.setText(accountLabel);
161 EditorUiUtils.getAccountInfoContentDescription(accountLabel,
RawContactEditorView.java 770 final String accountLabel = mIsUserProfile
774 accountLabel);
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
PhoneCallDetailsHelper.java 109 String accountLabel = mCallLogCache.getAccountLabel(details.accountHandle);
111 if (!TextUtils.isEmpty(accountLabel)) {
112 accountLabel =
114 R.string.call_log_via_number_phone_account, accountLabel, details.viaNumber);
116 accountLabel = mResources.getString(R.string.call_log_via_number, details.viaNumber);
119 if (!TextUtils.isEmpty(accountLabel)) {
121 views.callAccountLabel.setText(accountLabel);
CallLogListItemHelper.java 199 String accountLabel = mCallLogCache.getAccountLabel(details.accountHandle);
201 PhoneCallDetails.createAccountLabelDescription(mResources, details.viaNumber, accountLabel);
  /packages/services/Telephony/src/com/android/phone/settings/
PhoneAccountSettingsFragment.java 368 CharSequence accountLabel = account.getLabel();
371 accountPreference.setTitle((TextUtils.isEmpty(accountLabel) && isSimAccount)
372 ? getString(R.string.phone_accounts_default_account_label) : accountLabel);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 393 CharSequence accountLabel = getLabelForType(accountType);
395 if (accountLabel != null) {
396 setText(view, R.id.account_type, accountLabel.toString());

Completed in 228 milliseconds