In this code snippet, when scrolling comes to the end of list, method Log.d()
executed 3 times. Why does it happen and how to detect end of list to execute method only once?
Snippet:
public void onScroll(AbsListView view, int firstVisibleItem,
int visibleItemCount, int totalItemCount) {
if (getIntent().getBooleanExtra("isFavorites", false) == false) {
try {
if (visibleItemCount > 0 && firstVisibleItem + visibleItemCount == totalItemCount) {
Log.d(TAG, "Adding to list");
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
You could implement a
boolean
variable to ensure execution of theif
statement only once.and