Java 类android.view.MenuItem.OnActionExpandListener 实例源码

项目:FMTech    文件:MenuItemWrapperICS.java   
public MenuItem setOnActionExpandListener(MenuItem.OnActionExpandListener paramOnActionExpandListener)
{
  SupportMenuItem localSupportMenuItem = (SupportMenuItem)this.mWrappedObject;
  if (paramOnActionExpandListener != null) {}
  for (OnActionExpandListenerWrapper localOnActionExpandListenerWrapper = new OnActionExpandListenerWrapper(paramOnActionExpandListener);; localOnActionExpandListenerWrapper = null)
  {
    localSupportMenuItem.setSupportOnActionExpandListener(localOnActionExpandListenerWrapper);
    return this;
  }
}
项目:FMTech    文件:xq.java   
public MenuItem setOnActionExpandListener(MenuItem.OnActionExpandListener paramOnActionExpandListener)
{
  hc localhc = (hc)this.d;
  if (paramOnActionExpandListener != null) {}
  for (xt localxt = new xt(this, paramOnActionExpandListener);; localxt = null)
  {
    localhc.a(localxt);
    return this;
  }
}
项目:boohee_v5.6    文件:MenuItemWrapperICS.java   
OnActionExpandListenerWrapper(OnActionExpandListener object) {
    super(object);
}
项目:boohee_v5.6    文件:MenuItemWrapperICS.java   
public boolean onMenuItemActionExpand(MenuItem item) {
    return ((OnActionExpandListener) this.mWrappedObject).onMenuItemActionExpand(MenuItemWrapperICS.this.getMenuItemWrapper(item));
}
项目:boohee_v5.6    文件:MenuItemWrapperICS.java   
public boolean onMenuItemActionCollapse(MenuItem item) {
    return ((OnActionExpandListener) this.mWrappedObject).onMenuItemActionCollapse(MenuItemWrapperICS.this.getMenuItemWrapper(item));
}
项目:boohee_v5.6    文件:MenuItemWrapperICS.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener listener) {
    ((SupportMenuItem) this.mWrappedObject).setSupportOnActionExpandListener(listener != null ? new OnActionExpandListenerWrapper(listener) : null);
    return this;
}
项目:boohee_v5.6    文件:ActionMenuItem.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener listener) {
    throw new UnsupportedOperationException();
}
项目:boohee_v5.6    文件:ActionMenuItem.java   
public SupportMenuItem setSupportOnActionExpandListener(MenuItemCompat.OnActionExpandListener listener) {
    return this;
}
项目:solved-hacking-problem    文件:C0277r.java   
C0277r(C0274o c0274o, OnActionExpandListener onActionExpandListener) {
    this.f1051a = c0274o;
    super(onActionExpandListener);
}
项目:solved-hacking-problem    文件:C0277r.java   
public boolean m2249a(MenuItem menuItem) {
    return ((OnActionExpandListener) this.b).onMenuItemActionExpand(this.f1051a.m2087a(menuItem));
}
项目:solved-hacking-problem    文件:C0277r.java   
public boolean m2250b(MenuItem menuItem) {
    return ((OnActionExpandListener) this.b).onMenuItemActionCollapse(this.f1051a.m2087a(menuItem));
}
项目:solved-hacking-problem    文件:C0261a.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener onActionExpandListener) {
    throw new UnsupportedOperationException();
}
项目:solved-hacking-problem    文件:C0272m.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener onActionExpandListener) {
    throw new UnsupportedOperationException("This is not supported, use MenuItemCompat.setOnActionExpandListener()");
}
项目:solved-hacking-problem    文件:C0274o.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener onActionExpandListener) {
    ((C0090b) this.b).m569a(onActionExpandListener != null ? new C0277r(this, onActionExpandListener) : null);
    return this;
}
项目:solved-hacking-problem    文件:C0277r.java   
C0277r(C0274o c0274o, OnActionExpandListener onActionExpandListener) {
    this.f1051a = c0274o;
    super(onActionExpandListener);
}
项目:solved-hacking-problem    文件:C0277r.java   
public boolean m2249a(MenuItem menuItem) {
    return ((OnActionExpandListener) this.b).onMenuItemActionExpand(this.f1051a.m2087a(menuItem));
}
项目:solved-hacking-problem    文件:C0277r.java   
public boolean m2250b(MenuItem menuItem) {
    return ((OnActionExpandListener) this.b).onMenuItemActionCollapse(this.f1051a.m2087a(menuItem));
}
项目:solved-hacking-problem    文件:C0261a.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener onActionExpandListener) {
    throw new UnsupportedOperationException();
}
项目:solved-hacking-problem    文件:C0272m.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener onActionExpandListener) {
    throw new UnsupportedOperationException("This is not supported, use MenuItemCompat.setOnActionExpandListener()");
}
项目:solved-hacking-problem    文件:C0274o.java   
public MenuItem setOnActionExpandListener(OnActionExpandListener onActionExpandListener) {
    ((C0090b) this.b).m569a(onActionExpandListener != null ? new C0277r(this, onActionExpandListener) : null);
    return this;
}
项目:FMTech    文件:MenuItemWrapperICS.java   
OnActionExpandListenerWrapper(MenuItem.OnActionExpandListener paramOnActionExpandListener)
{
  super();
}
项目:FMTech    文件:MenuItemWrapperICS.java   
public final boolean onMenuItemActionCollapse(MenuItem paramMenuItem)
{
  return ((MenuItem.OnActionExpandListener)this.mWrappedObject).onMenuItemActionCollapse(MenuItemWrapperICS.this.getMenuItemWrapper(paramMenuItem));
}
项目:FMTech    文件:MenuItemWrapperICS.java   
public final boolean onMenuItemActionExpand(MenuItem paramMenuItem)
{
  return ((MenuItem.OnActionExpandListener)this.mWrappedObject).onMenuItemActionExpand(MenuItemWrapperICS.this.getMenuItemWrapper(paramMenuItem));
}
项目:FMTech    文件:ActionMenuItem.java   
public final MenuItem setOnActionExpandListener(MenuItem.OnActionExpandListener paramOnActionExpandListener)
{
  throw new UnsupportedOperationException();
}
项目:FMTech    文件:ActionMenuItem.java   
public final SupportMenuItem setSupportOnActionExpandListener(MenuItemCompat.OnActionExpandListener paramOnActionExpandListener)
{
  return this;
}
项目:FMTech    文件:MenuItemImpl.java   
public final MenuItem setOnActionExpandListener(MenuItem.OnActionExpandListener paramOnActionExpandListener)
{
  throw new UnsupportedOperationException("This is not supported, use MenuItemCompat.setOnActionExpandListener()");
}
项目:FMTech    文件:MenuItemImpl.java   
public final SupportMenuItem setSupportOnActionExpandListener(MenuItemCompat.OnActionExpandListener paramOnActionExpandListener)
{
  this.mOnActionExpandListener = paramOnActionExpandListener;
  return this;
}
项目:FMTech    文件:xp.java   
public final MenuItem setOnActionExpandListener(MenuItem.OnActionExpandListener paramOnActionExpandListener)
{
  throw new UnsupportedOperationException("This is not supported, use MenuItemCompat.setOnActionExpandListener()");
}