Home | History | Annotate | Download | only in menu

Lines Matching refs:Menu

17 package com.android.tv.menu;
23 * A base class of the item which will be displayed in the main menu.
32 private final Menu mMenu;
37 public MenuRow(Context context, Menu menu, int titleResId, int heightResId) {
38 this(context, menu, context.getString(titleResId), heightResId);
41 public MenuRow(Context context, Menu menu, String title, int heightResId) {
44 mMenu = menu;
56 * Returns the menu object.
58 public Menu getMenu() {
77 * Sets the menu row view.
84 * Returns the menu row view.
92 * This method is called only by the menu when necessary.
97 * Indicates whether this row is shown in the menu.
105 * This method is called when the main menu is not available any more.
116 * Returns the ID of this row. This ID is used to select the row in the main menu.