Lines Matching defs:actionState

533      * @param actionState The type of action
535 private void select(ViewHolder selected, int actionState) {
536 if (selected == mSelected && actionState == mActionState) {
543 mActionState = actionState;
544 if (actionState == ACTION_STATE_DRAG) {
551 int actionStateMask = (1 << (DIRECTION_FLAG_COUNT + DIRECTION_FLAG_COUNT * actionState))
640 if (actionState == ACTION_STATE_DRAG) {
1387 * public void onSelectedChanged(RecyclerView.ViewHolder viewHolder, int actionState) {
1393 * RecyclerView.ViewHolder viewHolder, float dX, float dY, int actionState,
1397 * actionState, isCurrentlyActive);
1401 * RecyclerView.ViewHolder viewHolder, float dX, float dY, int actionState,
1405 * actionState, isCurrentlyActive);
1466 * @param actionState The action state you want to get flags in. Should be one of
1471 * @return And integer that represents the given directions in the provided actionState.
1473 public static int makeFlag(int actionState, int directions) {
1474 return directions << (actionState * DIRECTION_FLAG_COUNT);
1778 * @param actionState One of {@link ItemTouchHelper#ACTION_STATE_IDLE},
1784 public void onSelectedChanged(ViewHolder viewHolder, int actionState) {
1867 int actionState, float dX, float dY) {
1879 onChildDraw(c, parent, selected, dX, dY, actionState, true);
1886 int actionState, float dX, float dY) {
1897 onChildDrawOver(c, parent, selected, dX, dY, actionState, true);
1952 * @param actionState The type of interaction on the View. Is either {@link
1961 float dX, float dY, int actionState, boolean isCurrentlyActive) {
1962 sUICallback.onDraw(c, recyclerView, viewHolder.itemView, dX, dY, actionState,
1986 * @param actionState The type of interaction on the View. Is either {@link
1995 float dX, float dY, int actionState, boolean isCurrentlyActive) {
1996 sUICallback.onDrawOver(c, recyclerView, viewHolder.itemView, dX, dY, actionState,
2255 int actionState, float startDx, float startDy, float targetX, float targetY) {
2256 mActionState = actionState;