Example usage for android.support.v4.widget ExploreByTouchHelper INVALID_ID

List of usage examples for android.support.v4.widget ExploreByTouchHelper INVALID_ID

Introduction

In this page you can find the example usage for android.support.v4.widget ExploreByTouchHelper INVALID_ID.

Prototype

int INVALID_ID

To view the source code for android.support.v4.widget ExploreByTouchHelper INVALID_ID.

Click Source Link

Usage

From source file:com.facebook.litho.ComponentLifecycle.java

/**
 * Get extra accessibility node id at a given point within the component.
 * @param x x co-ordinate within the mounted component
 * @param y y co-ordinate within the mounted component
 * @param component the {@link Component} for this component
 * @return the extra virtual view id if one is found, otherwise
 *         {@code ExploreByTouchHelper#INVALID_ID}
 *///w w w  .  j  av a 2  s.c  om
protected int getExtraAccessibilityNodeAt(int x, int y, Component<?> component) {
    return ExploreByTouchHelper.INVALID_ID;
}