Home | History | Annotate | Download | only in widget

Lines Matching defs:mTitleLayout

48     private LinearLayout mTitleLayout;
146 if (view != null && mTitleLayout != null) {
147 removeView(mTitleLayout);
148 mTitleLayout = null;
175 if (mTitleLayout == null) {
178 mTitleLayout = (LinearLayout) getChildAt(getChildCount() - 1);
179 mTitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_title);
180 mSubtitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_subtitle);
195 mTitleLayout.setVisibility(hasTitle || hasSubtitle ? VISIBLE : GONE);
196 if (mTitleLayout.getParent() == null) {
197 addView(mTitleLayout);
335 if (mTitleLayout != null && mCustomView == null) {
339 mTitleLayout.measure(titleWidthSpec, childSpecHeight);
340 final int titleWidth = mTitleLayout.getMeasuredWidth();
345 mTitleLayout.setVisibility(titleFits ? VISIBLE : GONE);
347 availableWidth = measureChildView(mTitleLayout, availableWidth, childSpecHeight, 0);
398 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE) {
399 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl);