5

I am trying to invoke programmatically onScroll event in ListView.

Can anybody help me?

Here my code:

@RunWith(RobolectricTestRunner.class)
public class ActivityListViewTest {

    private ActivityListView activity;

    @Before
    public void setUp() throws Exception {
        activity = new ActivityListView();
    }

    @Test
    public void shouldUpdateListViewChildCountOnCreate() throws Exception{
        activity.onCreate(null);
        ListView calendarListView = (ListView)activity.findViewById(R.id.listview);

        assertTrue("CHILD COUNT IS: " + calendarListView.getChildCount(), calendarListView.getChildCount() > 0);

        // Here i want to invoke onScroll event. Then ListView must update and listView items count become to be more that 20

        assertTrue("CHILD COUNT IS: " + calendarListView.getChildCount(), calendarListView.getChildCount() > 20);
    }
}
ihrupin
  • 6,932
  • 2
  • 31
  • 47

1 Answers1

6

From the official documentation:

public void smoothScrollByOffset (int offset) 

or

public void smoothScrollToPosition (int position) 
Gabriel Negut
  • 13,860
  • 4
  • 38
  • 45