PullLayout
PullLayout copied to clipboard
A reusable Pull to Refresh library for Android. Support RecyclerView ListView ScrollView ViewPager CoordinatorLayout. Sliding damping, supports all directions. Drag and drop sort. You can use it like...
Results
1
PullLayout issues
Sort by
recently updated
recently updated
newest added
The drag and reorder is working good in Vertical RecyclerView but not in Horizontal. `recyclerView =(PullRecyclerView) findViewById(R.id.rv_list); recyclerView.setCanPullDown(false); recyclerView.setCanPullUp(false); recyclerView.setHasFixedSize(true); recyclerView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, true)); ` Each item can be dragged...