Home
last modified time | relevance | path

Searched refs:mTitleLayout (Results 1 – 3 of 3) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
DActionBarContextView.java47 private LinearLayout mTitleLayout; field in ActionBarContextView
103 if (view != null && mTitleLayout != null) { in setCustomView()
104 removeView(mTitleLayout); in setCustomView()
105 mTitleLayout = null; in setCustomView()
132 if (mTitleLayout == null) { in initTitle()
135 mTitleLayout = (LinearLayout) getChildAt(getChildCount() - 1); in initTitle()
136 mTitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_title); in initTitle()
137 mSubtitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_subtitle); in initTitle()
152 mTitleLayout.setVisibility(hasTitle || hasSubtitle ? VISIBLE : GONE); in initTitle()
153 if (mTitleLayout.getParent() == null) { in initTitle()
[all …]
/frameworks/base/core/java/com/android/internal/widget/
DActionBarContextView.java48 private LinearLayout mTitleLayout; field in ActionBarContextView
146 if (view != null && mTitleLayout != null) { in setCustomView()
147 removeView(mTitleLayout); in setCustomView()
148 mTitleLayout = null; in setCustomView()
175 if (mTitleLayout == null) { in initTitle()
178 mTitleLayout = (LinearLayout) getChildAt(getChildCount() - 1); in initTitle()
179 mTitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_title); in initTitle()
180 mSubtitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_subtitle); in initTitle()
195 mTitleLayout.setVisibility(hasTitle || hasSubtitle ? VISIBLE : GONE); in initTitle()
196 if (mTitleLayout.getParent() == null) { in initTitle()
[all …]
DActionBarView.java94 private LinearLayout mTitleLayout; field in ActionBarView
236 if (mTitleLayout != null && mTitleLayout.getParent() == mUpGoerFive) { in onConfigurationChanged()
237 mUpGoerFive.removeView(mTitleLayout); in onConfigurationChanged()
239 mTitleLayout = null; in onConfigurationChanged()
504 mTitleLayout.setVisibility(visible ? VISIBLE : GONE); in setTitleImpl()
524 mTitleLayout.setVisibility(visible ? VISIBLE : GONE); in setSubtitle()
624 mUpGoerFive.removeView(mTitleLayout); in setDisplayOptions()
645 if (mTitleLayout != null && in setDisplayOptions()
808 if (mTitleLayout == null) { in initTitle()
810 mTitleLayout = (LinearLayout) inflater.inflate(R.layout.action_bar_title_item, in initTitle()
[all …]