本文整理汇总了Java中com.actionbarsherlock.internal.view.menu.MenuItemImpl.invoke方法的典型用法代码示例。如果您正苦于以下问题:Java MenuItemImpl.invoke方法的具体用法?Java MenuItemImpl.invoke怎么用?Java MenuItemImpl.invoke使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.actionbarsherlock.internal.view.menu.MenuItemImpl
的用法示例。
在下文中一共展示了MenuItemImpl.invoke方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onMenuItemClick
import com.actionbarsherlock.internal.view.menu.MenuItemImpl; //导入方法依赖的package包/类
@Override
public boolean onMenuItemClick(android.view.MenuItem item) {
if (ActionBarSherlock.DEBUG) Log.d(TAG, "[mNativeItemListener.onMenuItemClick] item: " + item);
final MenuItemImpl sherlockItem = mNativeItemMap.get(item);
if (sherlockItem != null) {
sherlockItem.invoke();
} else {
Log.e(TAG, "Options item \"" + item + "\" not found in mapping");
}
return true; //Do not allow continuation of native handling
}
示例2: onMenuItemClick
import com.actionbarsherlock.internal.view.menu.MenuItemImpl; //导入方法依赖的package包/类
@Override
public boolean onMenuItemClick(android.view.MenuItem item) {
if (BuildConfig.DEBUG) Log.d(TAG, "[mNativeItemListener.onMenuItemClick] item: " + item);
final MenuItemImpl sherlockItem = mNativeItemMap.get(item);
if (sherlockItem != null) {
sherlockItem.invoke();
} else {
Log.e(TAG, "Options item \"" + item + "\" not found in mapping");
}
return true; //Do not allow continuation of native handling
}
示例3: onMenuItemClick
import com.actionbarsherlock.internal.view.menu.MenuItemImpl; //导入方法依赖的package包/类
@Override
public boolean onMenuItemClick(android.view.MenuItem item) {
if (DEBUG) Log.d(TAG, "[mNativeItemListener.onMenuItemClick] item: " + item);
final MenuItemImpl sherlockItem = mNativeItemMap.get(item);
if (sherlockItem != null) {
sherlockItem.invoke();
} else {
Log.e(TAG, "Options item \"" + item + "\" not found in mapping");
}
return true; //Do not allow continuation of native handling
}