Пример #1
0
 /**
  * Show a PopupMenu.
  *
  * @param reactTag the tag of the anchor view (the PopupMenu is displayed next to this view); this
  *     needs to be the tag of a native view (shadow views can not be anchors)
  * @param items the menu items as an array of strings
  * @param error will be called if there is an error displaying the menu
  * @param success will be called with the position of the selected item as the first argument, or
  *     no arguments if the menu is dismissed
  */
 public void showPopupMenu(int reactTag, ReadableArray items, Callback error, Callback success) {
   assertViewExists(reactTag, "showPopupMenu");
   mOperationsQueue.enqueueShowPopupMenu(reactTag, items, error, success);
 }