本文整理匯總了Java中com.actionbarsherlock.internal.view.menu.MenuItemWrapper類的典型用法代碼示例。如果您正苦於以下問題:Java MenuItemWrapper類的具體用法?Java MenuItemWrapper怎麽用?Java MenuItemWrapper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
MenuItemWrapper類屬於com.actionbarsherlock.internal.view.menu包,在下文中一共展示了MenuItemWrapper類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onMenuItemSelected
import com.actionbarsherlock.internal.view.menu.MenuItemWrapper; //導入依賴的package包/類
/**
* Dispatch context and options menu to fragments.
*/
@Override
public final boolean onMenuItemSelected(int featureId, android.view.MenuItem item) {
if (super.onMenuItemSelected(featureId, item)) {
return true;
}
switch (featureId) {
case Window.FEATURE_OPTIONS_PANEL:
return mFragments.dispatchOptionsItemSelected(new MenuItemWrapper(item));
case Window.FEATURE_CONTEXT_MENU:
return mFragments.dispatchContextItemSelected(new MenuItemWrapper(item));
default:
return false;
}
}
示例2: onOptionsItemSelected
import com.actionbarsherlock.internal.view.menu.MenuItemWrapper; //導入依賴的package包/類
@Override
public final boolean onOptionsItemSelected(android.view.MenuItem item) {
return onOptionsItemSelected(new MenuItemWrapper(item));
}