
com.actionbarsherlock.internal.view.menu.ContextMenuItemWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of addon-facebook Show documentation
Show all versions of addon-facebook Show documentation
Facebook SDK special for using with HoloEverywhere library
The newest version!
package com.actionbarsherlock.internal.view.menu;
import android.view.MenuItem;
public class ContextMenuItemWrapper extends MenuItemWrapper {
private final MenuItem nativeItem;
public ContextMenuItemWrapper(MenuItem nativeItem) {
super(nativeItem);
this.nativeItem = nativeItem;
}
public MenuItem unwrap() {
return nativeItem;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy