android.view.MenuItem.setNumericShortcut()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(149)

本文整理了Java中android.view.MenuItem.setNumericShortcut()方法的一些代码示例,展示了MenuItem.setNumericShortcut()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MenuItem.setNumericShortcut()方法的具体详情如下:
包路径:android.view.MenuItem
类名称:MenuItem
方法名:setNumericShortcut

暂无

代码示例

代码示例来源:origin: robolectric/robolectric

item = item.setIntent(null);
assertThat(item).isNotNull();
item = item.setNumericShortcut('6');
assertThat(item).isNotNull();
item = item.setOnActionExpandListener(null);

代码示例来源:origin: com.actionbarsherlock/actionbarsherlock

@Override
public MenuItem setNumericShortcut(char numericChar) {
  mNativeItem.setNumericShortcut(numericChar);
  return this;
}

代码示例来源:origin: com.willowtreeapps/oak-demos

@Override
public MenuItem setNumericShortcut(char numericChar) {
  mNativeItem.setNumericShortcut(numericChar);
  return this;
}

代码示例来源:origin: com.actionbarsherlock/actionbarsherlock

nativeSubItem.setEnabled(subItem.isEnabled());
    nativeSubItem.setIntent(subItem.getIntent());
    nativeSubItem.setNumericShortcut(subItem.getNumericShortcut());
    nativeSubItem.setAlphabeticShortcut(subItem.getAlphabeticShortcut());
    nativeSubItem.setTitleCondensed(subItem.getTitleCondensed());
nativeItem.setEnabled(nonActionItem.isEnabled());
nativeItem.setIntent(nonActionItem.getIntent());
nativeItem.setNumericShortcut(nonActionItem.getNumericShortcut());
nativeItem.setAlphabeticShortcut(nonActionItem.getAlphabeticShortcut());
nativeItem.setTitleCondensed(nonActionItem.getTitleCondensed());

代码示例来源:origin: com.willowtreeapps/oak-demos

nativeSubItem.setEnabled(subItem.isEnabled());
    nativeSubItem.setIntent(subItem.getIntent());
    nativeSubItem.setNumericShortcut(subItem.getNumericShortcut());
    nativeSubItem.setAlphabeticShortcut(subItem.getAlphabeticShortcut());
    nativeSubItem.setTitleCondensed(subItem.getTitleCondensed());
nativeItem.setEnabled(nonActionItem.isEnabled());
nativeItem.setIntent(nonActionItem.getIntent());
nativeItem.setNumericShortcut(nonActionItem.getNumericShortcut());
nativeItem.setAlphabeticShortcut(nonActionItem.getAlphabeticShortcut());
nativeItem.setTitleCondensed(nonActionItem.getTitleCondensed());

相关文章