Home | History | Annotate | Download | only in arrowscroll

Lines Matching defs:first

49         final LinearLayout first = (LinearLayout) mListView.getSelectedView();
51 assertEquals("first item should be at top of screen",
53 first.getTop());
54 assertTrue("first button of first list item should have focus",
55 first.getChildAt(0).isFocused());
57 first.getHeight() < mListView.getHeight());
60 assertTrue("first button of second item should be on screen",
67 final LinearLayout first = (LinearLayout) mListView.getSelectedView();
68 final int topOfFirstItemBefore = first.getTop();
70 assertTrue("focus should have moved to second button of first item",
71 first.getChildAt(2).isFocused());
75 topOfFirstItemBefore, first.getTop());
79 assertTrue("focus should have moved back to first button of first item",
80 first.getChildAt(0).isFocused());
82 topOfFirstItemBefore, first.getTop());
87 final LinearLayout first = (LinearLayout) mListView.getSelectedView();
88 final int topOfFirstItemBefore = first.getTop();
95 assertTrue("first button of second item should have focus",
98 topOfFirstItemBefore, first.getTop());
106 assertTrue("first button of second item should have focus",
110 assertEquals("first list item should have selection", 0,
112 assertTrue("second button of first item should have focus",