Searched refs:contentDescription (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIcon.java32 public CharSequence contentDescription; field in class:StatusBarIcon
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);
34 StatusBarIcon(UserHandle user, String resPackage, Icon icon, int iconLevel, int number, CharSequence contentDescription) argument
51 StatusBarIcon(String iconPackage, UserHandle user, int iconId, int iconLevel, int number, CharSequence contentDescription) argument
H A DIStatusBarService.aidl36 void setIcon(String slot, String iconPackage, int iconId, int iconLevel, String contentDescription);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkController.java57 public final String contentDescription; field in class:NetworkController.IconState
59 public IconState(boolean visible, int icon, String contentDescription) { argument
62 this.contentDescription = contentDescription;
65 public IconState(boolean visible, int icon, int contentDescription, argument
67 this(visible, icon, context.getString(contentDescription));
H A DEthernetSignalController.java51 String contentDescription = getStringIfExists(getContentDescription());
55 contentDescription));
H A DWifiSignalController.java82 String contentDescription = getStringIfExists(getContentDescription());
84 IconState statusIcon = new IconState(wifiVisible, getCurrentIconId(), contentDescription);
86 contentDescription);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlButtonPresenterSelector.java104 CharSequence contentDescription = TextUtils.isEmpty(action.getLabel2()) ?
106 if (!TextUtils.equals(vh.mFocusableView.getContentDescription(), contentDescription)) {
107 vh.mFocusableView.setContentDescription(contentDescription);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTask.java127 public String contentDescription; field in class:Task
144 String activityTitle, String contentDescription, Drawable activityIcon,
153 this.contentDescription = contentDescription;
171 this.contentDescription = o.contentDescription;
143 Task(TaskKey key, boolean isActive, int taskAffiliation, int taskAffiliationColor, String activityTitle, String contentDescription, Drawable activityIcon, int colorPrimary, boolean lockToThisTask, boolean lockToTaskEnabled, Bitmap icon, String iconFilename) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DAirplaneModeTile.java80 state.contentDescription = mContext.getString(
84 state.contentDescription = mContext.getString(
H A DLocationTile.java81 state.contentDescription = mContext.getString(
86 state.contentDescription = mContext.getString(
H A DRotationLockTile.java76 if (state.value == rotationLocked && state.contentDescription != null) {
94 state.contentDescription = getAccessibilityString(rotationLocked,
H A DBluetoothTile.java105 state.contentDescription = mContext.getString(
110 state.contentDescription = mContext.getString(
115 state.contentDescription = mContext.getString(
124 state.contentDescription = mContext.getString(
H A DDndTile.java134 state.contentDescription = mContext.getString(
140 state.contentDescription = mContext.getString(
146 state.contentDescription = mContext.getString(
152 state.contentDescription = mContext.getString(
H A DFlashlightTile.java91 state.contentDescription = mContext.getString(onOrOffId);
/frameworks/base/core/java/android/view/
H A DViewStructure.java154 public abstract void setContentDescription(CharSequence contentDescription); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java434 public String contentDescription; field in class:QSTile.State
444 || !Objects.equals(other.contentDescription, contentDescription)
451 other.contentDescription = contentDescription;
467 sb.append(",contentDescription=").append(contentDescription);
/frameworks/base/core/java/android/app/
H A DStatusBarManager.java191 public void setIcon(String slot, int iconId, int iconLevel, String contentDescription) { argument
196 contentDescription);
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java138 public static void setContentDescription(Object record, CharSequence contentDescription) { argument
139 ((AccessibilityRecord) record).setContentDescription(contentDescription);
H A DAccessibilityNodeInfoCompatIcs.java168 public static void setContentDescription(Object info, CharSequence contentDescription) { argument
169 ((AccessibilityNodeInfo) info).setContentDescription(contentDescription);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java76 public void setContentDescription(Object record, CharSequence contentDescription); argument
199 public void setContentDescription(Object record, CharSequence contentDescription) { argument
406 public void setContentDescription(Object record, CharSequence contentDescription) { argument
407 AccessibilityRecordCompatIcs.setContentDescription(record, contentDescription);
976 * @param contentDescription The description.
980 public void setContentDescription(CharSequence contentDescription) { argument
981 IMPL.setContentDescription(mRecord, contentDescription);
/frameworks/base/core/java/android/widget/
H A DAnalogClock.java269 String contentDescription = DateUtils.formatDateTime(mContext,
271 setContentDescription(contentDescription);
H A DActivityChooserView.java339 CharSequence contentDescription = mContext.getString(resourceId);
340 mExpandActivityOverflowButtonImage.setContentDescription(contentDescription);
559 String contentDescription = mContext.getString(
561 mDefaultActivityButton.setContentDescription(contentDescription);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLockIcon.java133 String contentDescription = getResources().getString(anyFingerprintIcon
136 setContentDescription(contentDescription);
H A DPhoneStatusBarPolicy.java286 String contentDescription =
293 contentDescription = mContext.getString(R.string.accessibility_bluetooth_connected);
297 mService.setIcon(SLOT_BLUETOOTH, iconId, 0, contentDescription);
H A DKeyguardBottomAreaView.java284 int contentDescription;
288 contentDescription = R.string.accessibility_voice_assist_button;
292 contentDescription = R.string.accessibility_phone_button;
296 mLeftAffordanceView.setContentDescription(mContext.getString(contentDescription));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java218 mWifiDescription = statusIcon.contentDescription;
234 state.mMobileDescription = statusIcon.contentDescription;
245 mEthernetDescription = state.contentDescription;
310 mAirplaneContentDescription = icon.contentDescription;

Completed in 446 milliseconds

12