Home

Awesome

PullZoomRecyclerView

Android Arsenal

Using RecyclerView requires three steps:<br/>

Features

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.