Lines Matching defs:group

77      * Value to use for group and item identifier integers when you don't care
83 * First value for group and item identifier integers.
118 * any existing menu items in the same group.
157 * @param groupId The group identifier that this item should be part of.
160 * group.
174 * @param groupId The group identifier that this item should be part of.
177 * group.
216 * @param groupId The group identifier that this item should be part of.
219 * group.
233 * @param groupId The group identifier that this item should be part of.
235 * changes. Normally use {@link #NONE} if an item should not be in a group.
245 * Add a group of menu items corresponding to actions that can be performed
261 * with the given group and id. You can use the group to control ordering of
264 * group and place a divider above and below the added items; this behavior
270 * @param groupId The group identifier that the items should be part of.
273 * a group.
308 * Remove all items in the given group.
310 * @param groupId The group to be removed. If there are no items in this
311 * group, nothing happens.
322 * Control whether a particular group of items can show a check mark. This
324 * with the given group identifier, but in addition you can control whether
325 * this group contains a mutually-exclusive set items. This should be called
326 * after the items of the group have been added to the menu.
328 * @param group The group of items to operate on.
331 * @param exclusive If set to true, only one item in this group can be
333 * uncheck all others in the group. If set to false, each
339 public void setGroupCheckable(int group, boolean checkable, boolean exclusive);
342 * Show or hide all menu items that are in the given group.
344 * @param group The group of items to operate on.
349 public void setGroupVisible(int group, boolean visible);
352 * Enable or disable all menu items that are in the given group.
354 * @param group The group of items to operate on.
359 public void setGroupEnabled(int group, boolean enabled);