HomeSort by relevance Sort by last modified time
    Searched defs:contentDescription (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
UidDetail.java 23 public CharSequence contentDescription;
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
IntentButtonProvider.java 36 public CharSequence contentDescription = null;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
EthernetSignalController.java 52 String contentDescription = getStringIfExists(getContentDescription());
56 contentDescription));
NetworkController.java 73 public final String contentDescription;
75 public IconState(boolean visible, int icon, String contentDescription) {
78 this.contentDescription = contentDescription;
81 public IconState(boolean visible, int icon, int contentDescription,
83 this(visible, icon, context.getString(contentDescription));
WifiSignalController.java 92 String contentDescription = getStringIfExists(getContentDescription());
94 contentDescription += ("," + mContext.getString(R.string.data_connection_no_internet));
96 IconState statusIcon = new IconState(wifiVisible, getCurrentIconId(), contentDescription);
98 contentDescription);
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ListRow.java 68 CharSequence contentDescription = headerItem.getContentDescription();
69 if (contentDescription != null) {
70 return contentDescription;
81 * @param contentDescription Content description sets on the ListRow.
83 public void setContentDescription(CharSequence contentDescription) {
84 mContentDescription = contentDescription;
ControlButtonPresenterSelector.java 105 CharSequence contentDescription = TextUtils.isEmpty(action.getLabel2())
107 if (!TextUtils.equals(vh.mFocusableView.getContentDescription(), contentDescription)) {
108 vh.mFocusableView.setContentDescription(contentDescription);
GuidanceStylist.java 183 CharSequence contentDescription = mGuidanceContainer.getContentDescription();
184 if (TextUtils.isEmpty(contentDescription)) {
  /packages/apps/Dialer/java/com/android/incallui/speakerbuttonlogic/
SpeakerButtonInfo.java 40 @StringRes public final int contentDescription;
58 contentDescription = R.string.incall_content_description_bluetooth;
65 contentDescription = R.string.incall_content_description_speaker;
72 contentDescription = R.string.incall_content_description_headset;
78 contentDescription = R.string.incall_content_description_earpiece;
88 contentDescription = R.string.incall_content_description_speaker;
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java 99 String contentDescription = new StringBuilder()
103 label.setContentDescription(contentDescription);
TaskBackService.java 131 CharSequence contentDescription = record.getContentDescription();
132 if (!TextUtils.isEmpty(contentDescription )) {
134 utterance.append(contentDescription);
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarIcon.java 32 public CharSequence contentDescription;
35 CharSequence contentDescription) {
48 this.contentDescription = contentDescription;
53 CharSequence contentDescription) {
55 iconLevel, number, contentDescription);
71 this.iconLevel, this.number, this.contentDescription);
90 this.contentDescription = in.readCharSequence();
100 out.writeCharSequence(this.contentDescription);
  /packages/apps/Dialer/java/com/android/incallui/video/impl/
SpeakerButtonController.java 44 private CharSequence contentDescription;
66 button.setContentDescription(contentDescription);
101 contentDescription = button.getContext().getText(contentDescriptionResId);
  /external/droiddriver/src/io/appium/droiddriver/finders/
By.java 105 public static MatchFinder contentDescription(String contentDescription) {
106 return new MatchFinder(Predicates.attributeEquals(Attribute.CONTENT_DESC, contentDescription));
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
PhotoPagerAdapter.java 53 final String contentDescription = getPhotoName(cursor);
66 .setContentDescription(contentDescription)
  /packages/apps/Contacts/src/com/android/contacts/interactions/
SmsInteraction.java 166 final String contentDescription = context.getResources().getString(
169 return ContactDisplayUtils.getTelephoneTtsSpannable(contentDescription, phoneNumber);
  /packages/apps/Launcher3/src/com/android/launcher3/
ItemInfo.java 107 public CharSequence contentDescription;
132 contentDescription = info.contentDescription;
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
GalleryGridItemView.java 154 String contentDescription = String.format(getResources().getString(templateId),
156 mImageView.setContentDescription(contentDescription);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
CheckoutActivityTest.java 329 final String contentDescription = image.getContentDescription();
331 assertThat(contentDescription).isEqualTo("One image is worth thousand words");
333 assertThat(contentDescription).isNull();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAccessibilityEvent.java 29 private CharSequence contentDescription;
154 contentDescription = description;
159 return contentDescription;
204 areEqual &= TextUtils.equals(contentDescription, otherShadow.contentDescription);
237 newShadow.contentDescription = contentDescription;
  /frameworks/base/core/java/android/service/autofill/
ImageTransformation.java 91 if (option.contentDescription != null) {
93 option.contentDescription);
142 * @param contentDescription content description to be applied in the child view.
145 @NonNull CharSequence contentDescription) {
147 addOption(regex, resId, contentDescription);
174 * @param contentDescription content description to be applied in the child view.
179 @NonNull CharSequence contentDescription) {
180 addOptionInternal(regex, resId, Preconditions.checkNotNull(contentDescription));
185 @Nullable CharSequence contentDescription) {
191 mOptions.add(new Option(regex, resId, contentDescription));
    [all...]
  /frameworks/base/core/java/android/widget/
AnalogClock.java 267 String contentDescription = DateUtils.formatDateTime(mContext,
269 setContentDescription(contentDescription);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/location/
RecentLocationApps.java 190 public final CharSequence contentDescription;
194 CharSequence label, boolean isHighBattery, CharSequence contentDescription,
201 this.contentDescription = contentDescription;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
HybridGroupManager.java 147 String contentDescription = String.format(mContext.getResources().getQuantityString(
150 reusableView.setContentDescription(contentDescription);
  /frameworks/support/slices/view/src/main/java/androidx/slice/widget/
SliceActionView.java 123 CharSequence contentDescription = action.getContentDescription() != null
126 mActionView.setContentDescription(contentDescription);

Completed in 605 milliseconds

1 2 3 4 5 6 7 8