PullZoomRecyclerView

Additional

Language
Java
Version
N/A
Created
Aug 27, 2015
Updated
Sep 24, 2017 (Retired)
Owner
dinus_developer (dinuscxj)
Contributor
dinus_developer (dinuscxj)
1
Activity
Badge
Generate
Download
Source code

PullZoomRecyclerView

Using RecyclerView requires three steps:

  • Step one: use the PullZoomRecyclerView in XML
  • Step two: call the function setAdapter and the function setLayoutManager
  • Step three: call the function setZoomView and the function setHeaderContainer

Features

  • Two Pull Zoom mode (ZOOM_FOOTER or ZOOM_HEADER)
  • Listening pull process (including pullStart、 pullZooming, pullEnd)
  • You can reset the default smooth scroll to top interpolator(the default is DecelerateInterpolator)

Precautions

  1. Please make sure PullZoomRecyclerView is the root layout, or the parent of the PullZoomRecyclerView not intercept the touch event.
  2. Please ensure the Ancestor of the ZoomView support zoom, means that the Ancestor of the ZoomView should use wrap_parent, if the Ancestor is the exact value, whatever you adjust the child, will not work well.

Usage

Add dependency

dependencies {
   compile 'com.dinuscxj:pullzoomrecyclerview:1.0.4'
}

Used in xml

<com.dinuscxj.pullzoom.PullZoomRecyclerView
   android:id="@+id/recycler_view"
   android:layout_width="match_parent"
   android:layout_height="match_parent"/>

Used in java

mPullZoomRecyclerView.setAdapter(new Adapter());
mPullZoomRecyclerView.setLayoutMannager(new LinearLayoutManager(context));
mPullZoomRecyclerView.setZoomView(zoomView);
mPullZoomRecyclerView.setHeaderContainer(headerContainer);

Thanks

PullZoomView

Misc

QQ Group: 342748245

License

Copyright 2015-2019 dinus

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.