Searched refs:shadowView (Results 1 – 2 of 2) sorted by relevance
1161 final View shadowView = getChildCount() > 1 ? getChildAt(1) : null; in draw() local1162 if (shadowView == null || shadowDrawable == null) { in draw()1167 final int top = shadowView.getTop(); in draw()1168 final int bottom = shadowView.getBottom(); in draw()1174 left = shadowView.getRight(); in draw()1177 right = shadowView.getLeft(); in draw()
1797 TextView shadowView = (TextView) View.inflate(mTextView.getContext(), in getTextThumbnailBuilder() local1800 if (shadowView == null) { in getTextThumbnailBuilder()1807 shadowView.setText(text); in getTextThumbnailBuilder()1808 shadowView.setTextColor(mTextView.getTextColors()); in getTextThumbnailBuilder()1810 shadowView.setTextAppearance(mTextView.getContext(), R.styleable.Theme_textAppearanceLarge); in getTextThumbnailBuilder()1811 shadowView.setGravity(Gravity.CENTER); in getTextThumbnailBuilder()1813 shadowView.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, in getTextThumbnailBuilder()1817 shadowView.measure(size, size); in getTextThumbnailBuilder()1819 shadowView.layout(0, 0, shadowView.getMeasuredWidth(), shadowView.getMeasuredHeight()); in getTextThumbnailBuilder()1820 shadowView.invalidate(); in getTextThumbnailBuilder()[all …]