Home | History | Annotate | Download | only in widget

Lines Matching defs:mCaption

87     private View mCaption;
130 mCaption = getChildAt(0);
140 mCaption.setBackgroundColor(Color.TRANSPARENT);
230 if (mCaption != null) {
231 mTouchDispatchList.add(mCaption);
276 if (mCaption.getVisibility() != View.GONE) {
277 measureChildWithMargins(mCaption, widthMeasureSpec, 0, heightMeasureSpec, 0);
278 captionHeight = mCaption.getMeasuredHeight();
298 if (mCaption.getVisibility() != View.GONE) {
299 mCaption.layout(0, 0, mCaption.getMeasuredWidth(), mCaption.getMeasuredHeight());
300 captionHeight = mCaption.getBottom() - mCaption.getTop();
338 mCaption.setVisibility(invisible ? GONE : VISIBLE);
339 mCaption.setOnTouchListener(this);
361 return (mCaption != null) ? mCaption.getHeight() : 0;
372 return mCaption;