Home
last modified time | relevance | path

Searched refs:mCustomView (Results 1 – 5 of 5) sorted by relevance

/appcompat/appcompat/src/main/java/androidx/appcompat/widget/
DActionBarContextView.java50 private View mCustomView; field in ActionBarContextView
119 if (mCustomView != null) { in setCustomView()
120 removeView(mCustomView); in setCustomView()
122 mCustomView = view; in setCustomView()
220 mCustomView = null; in killMode()
300 if (mTitleLayout != null && mCustomView == null) { in onMeasure()
315 if (mCustomView != null) { in onMeasure()
316 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams(); in onMeasure()
325 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode), in onMeasure()
361 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE) { in onLayout()
[all …]
DToolbarWidgetWrapper.java74 private View mCustomView; field in ToolbarWidgetWrapper
412 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) { in setDisplayOptions()
414 mToolbar.addView(mCustomView); in setDisplayOptions()
416 mToolbar.removeView(mCustomView); in setDisplayOptions()
542 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) { in setCustomView()
543 mToolbar.removeView(mCustomView); in setCustomView()
545 mCustomView = view; in setCustomView()
547 mToolbar.addView(mCustomView); in setCustomView()
553 return mCustomView; in getCustomView()
DScrollingTabContainerView.java389 private View mCustomView; field in ScrollingTabContainerView.TabView
462 mCustomView = custom; in update()
469 if (mCustomView != null) { in update()
470 removeView(mCustomView); in update()
471 mCustomView = null; in update()
/appcompat/appcompat/src/main/java/androidx/appcompat/view/
DStandaloneActionMode.java43 private WeakReference<View> mCustomView; field in StandaloneActionMode
95 mCustomView = view != null ? new WeakReference<View>(view) : null; in setCustomView()
130 return mCustomView != null ? mCustomView.get() : null; in getCustomView()
/appcompat/appcompat/src/main/java/androidx/appcompat/app/
DWindowDecorActionBar.java985 private WeakReference<View> mCustomView; field in WindowDecorActionBar.ActionModeImpl
1063 mCustomView = new WeakReference<View>(view); in setCustomView()
1109 return mCustomView != null ? mCustomView.get() : null; in getCustomView()
1160 private View mCustomView; field in WindowDecorActionBar.TabImpl
1185 return mCustomView; in getCustomView()
1190 mCustomView = view; in setCustomView()