I have an adapter that connected to ListView, e.g.
mJournalAdapter = new JournalAdapter(); journalEntryList.setAdapter(mJournalAdapter);
and I
You can use getFirstVisiblePosition() will give you the first visible Item in the ListView, so you can use that in your case.