Lines Matching refs:mDecorToolbar

45     private DecorToolbar mDecorToolbar;
70 mDecorToolbar = new ToolbarWidgetWrapper(toolbar, false);
72 mDecorToolbar.setWindowCallback(mWindowCallback);
74 mDecorToolbar.setWindowTitle(title);
91 mDecorToolbar.setCustomView(view);
96 final LayoutInflater inflater = LayoutInflater.from(mDecorToolbar.getContext());
97 setCustomView(inflater.inflate(resId, mDecorToolbar.getViewGroup(), false));
102 mDecorToolbar.setIcon(resId);
107 mDecorToolbar.setIcon(icon);
112 mDecorToolbar.setLogo(resId);
117 mDecorToolbar.setLogo(logo);
137 mDecorToolbar.getViewGroup().setElevation(elevation);
142 return mDecorToolbar.getViewGroup().getElevation();
147 return mDecorToolbar.getContext();
157 mDecorToolbar.setNavigationIcon(indicator);
162 mDecorToolbar.setNavigationIcon(resId);
167 mDecorToolbar.setNavigationContentDescription(description);
177 mDecorToolbar.setNavigationContentDescription(resId);
197 mDecorToolbar.setDropdownParams(adapter, new NavItemSelectedListener(callback));
202 switch (mDecorToolbar.getNavigationMode()) {
204 mDecorToolbar.setDropdownSelectedPosition(position);
224 mDecorToolbar.setTitle(title);
229 mDecorToolbar.setTitle(resId != 0 ? mDecorToolbar.getContext().getText(resId) : null);
234 mDecorToolbar.setWindowTitle(title);
239 mDecorToolbar.setSubtitle(subtitle);
244 mDecorToolbar.setSubtitle(resId != 0 ? mDecorToolbar.getContext().getText(resId) : null);
254 final int currentOptions = mDecorToolbar.getDisplayOptions();
255 mDecorToolbar.setDisplayOptions(options & mask | currentOptions & ~mask);
285 mDecorToolbar.setBackgroundDrawable(d);
290 return mDecorToolbar.getCustomView();
295 return mDecorToolbar.getTitle();
300 return mDecorToolbar.getSubtitle();
313 mDecorToolbar.setNavigationMode(mode);
318 return mDecorToolbar.getDisplayOptions();
394 return mDecorToolbar.getHeight();
401 mDecorToolbar.setVisibility(View.VISIBLE);
408 mDecorToolbar.setVisibility(View.GONE);
413 return mDecorToolbar.getVisibility() == View.VISIBLE;
418 return mDecorToolbar.showOverflowMenu();
423 return mDecorToolbar.hideOverflowMenu();
428 mDecorToolbar.getViewGroup().removeCallbacks(mMenuInvalidator);
429 mDecorToolbar.getViewGroup().postOnAnimation(mMenuInvalidator);
435 if (mDecorToolbar.hasExpandedActionView()) {
436 mDecorToolbar.collapseActionView();
444 mDecorToolbar.setMenuCallbacks(new ActionMenuPresenterCallback(), new MenuBuilderCallback());
447 final Menu menu = mDecorToolbar.getMenu();
475 Menu menu = mDecorToolbar.getMenu();
488 mDecorToolbar.getViewGroup().removeCallbacks(mMenuInvalidator);
520 mDecorToolbar.setMenuPrepared();
532 return new View(mDecorToolbar.getContext());
557 mDecorToolbar.dismissPopupMenus();
575 if (mDecorToolbar.isOverflowMenuShowing()) {