Lines Matching refs:position

697      * Find button GuidedAction position in array by Id.
699 * @return position of GuidedAction object in array or -1 if not found.
734 * @param position Position of the button GuidedAction in array.
736 public void notifyButtonActionChanged(int position) {
738 mButtonAdapter.notifyItemChanged(position);
743 * Returns the view corresponding to the button action at the indicated position in the list of
745 * @param position The integer position of the button action of interest.
746 * @return The View corresponding to the button action at the indicated position, or null if
749 public View getButtonActionItemView(int position) {
751 .findViewHolderForPosition(position);
756 * Scrolls the action list to the position indicated, selecting that button action's view.
757 * @param position The integer position of the button action of interest.
759 public void setSelectedButtonActionPosition(int position) {
760 mButtonActionsStylist.getActionsGridView().setSelectedPosition(position);
764 * Returns the position if the currently selected button GuidedAction.
765 * @return position The integer position of the currently selected button action.
790 * Find GuidedAction position in array by Id.
792 * @return position of GuidedAction object in array or -1 if not found.
819 * @param position Position of the GuidedAction in array.
821 public void notifyActionChanged(int position) {
823 mAdapter.notifyItemChanged(position);
828 * Returns the view corresponding to the action at the indicated position in the list of
830 * @param position The integer position of the action of interest.
831 * @return The View corresponding to the action at the indicated position, or null if that
834 public View getActionItemView(int position) {
836 .findViewHolderForPosition(position);
841 * Scrolls the action list to the position indicated, selecting that action's view.
842 * @param position The integer position of the action of interest.
844 public void setSelectedActionPosition(int position) {
845 mActionsStylist.getActionsGridView().setSelectedPosition(position);
849 * Returns the position if the currently selected GuidedAction.
850 * @return position The integer position of the currently selected action.