Home | History | Annotate | Download | only in shadows

Lines Matching defs:contentDescription

85     private CharSequence contentDescription = null;
161 public void setContentDescription(CharSequence contentDescription) {
162 this.contentDescription = contentDescription;
177 return contentDescription;
877 String contentDescription = attributeSet.getAttributeValue("android", "contentDescription");
878 if (contentDescription != null) {
879 if (contentDescription.startsWith("@string/")) {
880 int resId = attributeSet.getAttributeResourceValue("android", "contentDescription", 0);
881 contentDescription = context.getResources().getString(resId);
883 setContentDescription(contentDescription);