Searched defs:mTitleLayout (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java48 private LinearLayout mTitleLayout; field in class:ActionBarContextView
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
[all...]
H A DActionBarView.java94 private LinearLayout mTitleLayout; field in class:ActionBarView
236 if (mTitleLayout != null && mTitleLayout.getParent() == mUpGoerFive) {
237 mUpGoerFive.removeView(mTitleLayout);
239 mTitleLayout = null;
504 mTitleLayout.setVisibility(visible ? VISIBLE : GONE);
524 mTitleLayout.setVisibility(visible ? VISIBLE : GONE);
624 mUpGoerFive.removeView(mTitleLayout);
645 if (mTitleLayout != null &&
808 if (mTitleLayout
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContextView.java47 private LinearLayout mTitleLayout; field in class:ActionBarContextView
103 if (view != null && mTitleLayout != null) {
104 removeView(mTitleLayout);
105 mTitleLayout = null;
132 if (mTitleLayout == null) {
135 mTitleLayout = (LinearLayout) getChildAt(getChildCount() - 1);
136 mTitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_title);
137 mSubtitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_subtitle);
152 mTitleLayout.setVisibility(hasTitle || hasSubtitle ? VISIBLE : GONE);
153 if (mTitleLayout
[all...]

Completed in 81 milliseconds