Home | History | Annotate | Download | only in widget

Lines Matching defs:mTitleLayout

55     private LinearLayout mTitleLayout;
161 if (mTitleLayout != null) {
162 removeView(mTitleLayout);
163 mTitleLayout = null;
190 if (mTitleLayout == null) {
193 mTitleLayout = (LinearLayout) getChildAt(getChildCount() - 1);
194 mTitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_title);
195 mSubtitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_subtitle);
210 mTitleLayout.setVisibility(hasTitle || hasSubtitle ? VISIBLE : GONE);
211 if (mTitleLayout.getParent() == null) {
212 addView(mTitleLayout);
370 if (mTitleLayout != null && mCustomView == null) {
373 mTitleLayout.measure(titleWidthSpec, childSpecHeight);
374 final int titleWidth = mTitleLayout.getMeasuredWidth();
379 mTitleLayout.setVisibility(titleFits ? VISIBLE : GONE);
381 availableWidth = measureChildView(mTitleLayout, availableWidth, childSpecHeight, 0);
491 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE) {
492 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl);