Home | History | Annotate | Download | only in widget

Lines Matching refs:appearance

716          * Look the appearance up without checking first if it exists because
718 * to be able to parse the appearance first and then let specific tags
723 TypedArray appearance = null;
728 appearance = theme.obtainStyledAttributes(
731 if (appearance != null) {
732 int n = appearance.getIndexCount();
734 int attr = appearance.getIndex(i);
738 textColorHighlight = appearance.getColor(attr, textColorHighlight);
742 textColor = appearance.getColorStateList(attr);
746 textColorHint = appearance.getColorStateList(attr);
750 textColorLink = appearance.getColorStateList(attr);
754 textSize = appearance.getDimensionPixelSize(attr, textSize);
758 typefaceIndex = appearance.getInt(attr, -1);
762 fontFamily = appearance.getString(attr);
766 styleIndex = appearance.getInt(attr, -1);
770 allCaps = appearance.getBoolean(attr, false);
774 shadowcolor = appearance.getInt(attr, 0);
778 dx = appearance.getFloat(attr, 0);
782 dy = appearance.getFloat(attr, 0);
786 r = appearance.getFloat(attr, 0);
790 elegant = appearance.getBoolean(attr, false);
794 letterSpacing = appearance.getFloat(attr, 0);
798 fontFeatureSettings = appearance.getString(attr);
803 appearance.recycle();
2721 * Sets the text appearance from the specified style resource.
2947 * {@link #setTypeface(Typeface, int)} to get the appearance
8558 final TypedArray appearance = context.obtainStyledAttributes(
8560 colors = appearance.getColorStateList(R.styleable.TextAppearance_textColor);
8561 appearance.recycle();