SwipeRefreshLayout - Pull From Bottom

user3486440 picture user3486440 · Jul 21, 2014 · Viewed 31.9k times · Source

Is there a way to use SwipeRefreshLayout to refresh ListView when it's pulled from bottom?

I created pull from top, but I would also need pull from bottom. There are many tutorials on how to create pull from top, but I couldn't find any tutorials for pull from bottom?

Answer

AndreyICE picture AndreyICE · Nov 6, 2014

SwipeRefreshLayout from Android Support Library version 21 does not support pull from bottom. I have made modification SwipeRefreshLayoutBottom with is based on original SwipeRefreshLayout code. It is fully based on original Google code with just inversion of coordinates and overridden implementation of canChildScrollDown method. All modification are marked as TODO.

Bitbucker repository