Home | History | Annotate | Download | only in helpers

Lines Matching refs:focused

167         // header is focused; it should not be after pressing the DPad
210 * @return the focused object
216 UiObject2 focus = container.findObject(By.focused(true));
218 throw new UnknownUiException("The container should have a focused descendant.");
223 focus = container.findObject(By.focused(true));
226 focus = container.findObject(By.focused(true));
246 By.res(getPackage(), "guidedactions_list").hasChild(By.focused(true))),
250 UiObject2 focused = select(container, selector, Direction.DOWN);
251 if (focused != null) {
252 return focused;
254 focused = select(container, selector, Direction.UP);
255 if (focused != null) {
256 return focused;
279 By.focused(true).hasDescendant(By.res(getPackage(), "title_text").text(title))),
401 UiObject2 focused = select(container, header, Direction.UP);
402 if (focused != null) {
403 return focused;
405 focused = select(container, header, Direction.DOWN);
406 if (focused != null) {
407 return focused;