Searched refs:shadowView (Results 1 – 2 of 2) sorted by relevance
1173 final View shadowView = getChildCount() > 1 ? getChildAt(1) : null; in draw() local1174 if (shadowView == null || shadowDrawable == null) { in draw()1179 final int top = shadowView.getTop(); in draw()1180 final int bottom = shadowView.getBottom(); in draw()1186 left = shadowView.getRight(); in draw()1189 right = shadowView.getLeft(); in draw()
2350 TextView shadowView = (TextView) View.inflate(mTextView.getContext(), in getTextThumbnailBuilder() local2353 if (shadowView == null) { in getTextThumbnailBuilder()2362 shadowView.setText(text); in getTextThumbnailBuilder()2363 shadowView.setTextColor(mTextView.getTextColors()); in getTextThumbnailBuilder()2365 shadowView.setTextAppearance(R.styleable.Theme_textAppearanceLarge); in getTextThumbnailBuilder()2366 shadowView.setGravity(Gravity.CENTER); in getTextThumbnailBuilder()2368 shadowView.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, in getTextThumbnailBuilder()2372 shadowView.measure(size, size); in getTextThumbnailBuilder()2374 shadowView.layout(0, 0, shadowView.getMeasuredWidth(), shadowView.getMeasuredHeight()); in getTextThumbnailBuilder()2375 shadowView.invalidate(); in getTextThumbnailBuilder()[all …]