Lines Matching refs:view

23 import android.view.KeyEvent;
24 import android.view.MotionEvent.PointerCoords;
25 import android.view.accessibility.AccessibilityNodeInfo;
28 * A UiObject is a representation of a view. It is not in any way directly bound to a
29 * view as an object reference. A UiObject contains information to help it
30 * locate a matching view at runtime based on the {@link UiSelector} properties specified in
72 * Constructs a UiObject to represent a view that matches the specified
114 * Creates a new UiObject for a child view that is under the present UiObject.
116 * @param selector for child view to match
117 * @return a new UiObject representing the child view
126 * Creates a new UiObject for a sibling view or a child of the sibling view,
129 * @param selector for a sibling view or children of the sibling view
130 * @return a new UiObject representing the matched view
753 * Check if the view's <code>scrollable</code> property is currently true
769 * Check if the view's <code>long-clickable</code> property is currently true
785 * Reads the view's <code>package</code> property
801 * Returns the visible bounds of the view.
803 * If a portion of the view is visible, only the bounds of the visible portion are
821 * Returns the view's <code>bounds</code> property. See {@link #getVisibleBounds()}
840 * Waits a specified length of time for a view to become visible.
842 * This method waits until the view becomes visible on the display, or
847 * @return true if the view is displayed, else false if timeout elapsed while waiting
859 * Waits a specified length of time for a view to become undetectable.
861 * This method waits until a view is no longer matchable, or until the
864 * A view becomes undetectable when the {@link UiSelector} of the object is
891 * Check if view exists.
894 * basically returns immediately whether the view represented by this UiObject
895 * exists or not. If you need to wait longer for this view, then see
898 * @return true if the view represented by this UiObject does exist