All Projects → ruzhan1116 → ViewHolder-Slide-Helper

ruzhan1116 / ViewHolder-Slide-Helper

Licence: Apache-2.0 License
recyclerview holder animation

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to ViewHolder-Slide-Helper

resumify
Capture screenshot and make PDF on your HTML presentation.
Stars: ✭ 28 (-83.23%)
Mutual labels:  slide
slides
Alexander Makarov conference slides
Stars: ✭ 26 (-84.43%)
Mutual labels:  slide
cyber-gym
Deliberately vulnerable scripts for Web Security training
Stars: ✭ 19 (-88.62%)
Mutual labels:  slide
Slide-iOS
A powerful new way to Reddit on iOS.
Stars: ✭ 461 (+176.05%)
Mutual labels:  slide
KBImageView
UIImageView with Ken Burns effect.
Stars: ✭ 48 (-71.26%)
Mutual labels:  slide
LockerScreen
Android lock screen,slide to unlock ! 安卓锁屏,上滑解锁,效果酷炫,值得拥有!
Stars: ✭ 81 (-51.5%)
Mutual labels:  slide
android-lecture
android lecture notes
Stars: ✭ 25 (-85.03%)
Mutual labels:  slide
VerificationCode
简单的滑动验证码JS插件 图片验证码
Stars: ✭ 15 (-91.02%)
Mutual labels:  slide
SortedListAdapter
The RecyclerView.Adapter that makes your life easy!
Stars: ✭ 48 (-71.26%)
Mutual labels:  recyclerview-item-animation
InfiniteScrollRecyclerView
Enables the RecyclerView to Auto scroll for indefinite time.
Stars: ✭ 49 (-70.66%)
Mutual labels:  recyclerview-item-animation
SlideToUnlock
No description or website provided.
Stars: ✭ 14 (-91.62%)
Mutual labels:  slide
cachu-slider
🌈 🔆 Create animated full screen and content-fit sliders efficiently.
Stars: ✭ 30 (-82.04%)
Mutual labels:  slide
Searchable-RecyclerView-Demo
An example app using a SearchView to filter items in a RecyclerView while taking full advantage of item animations!
Stars: ✭ 722 (+332.34%)
Mutual labels:  recyclerview-item-animation
mm.angular-fullpage.js
Angular directive for use the jQuery fullPage.js library on Angular.js v1.x
Stars: ✭ 17 (-89.82%)
Mutual labels:  slide
reveal-sampler
A reveal.js plugin to fetch code samples from source files
Stars: ✭ 20 (-88.02%)
Mutual labels:  slide
channel9
Channel9 PowerShell scripts to download Powerpoint Slides and videos
Stars: ✭ 19 (-88.62%)
Mutual labels:  slide
cppcon2015
Repository for the slides and the code of my CppCon 2015 talks.
Stars: ✭ 93 (-44.31%)
Mutual labels:  slide
CameraSlider
3D printed and smartphone controlled camera slider
Stars: ✭ 16 (-90.42%)
Mutual labels:  slide
react-carousel-3d
3D carousal component in react
Stars: ✭ 129 (-22.75%)
Mutual labels:  slide
react-native-panel
A Customizable React Native Panel for Android and iOS
Stars: ✭ 35 (-79.04%)
Mutual labels:  slide

ViewHolder-Slide-Helper

A grace recycleriew holder animation library for Android

Screenshots

ViewHolder-Slide-Helper use Animation and Scroller, expend recyclerview holder

Gradle

Add it in your root build.gradle at the end of repositories:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Add the dependency:

	dependencies {
	        compile 'com.github.ruzhan123:ViewHolder-Slide-Helper:v1.3'
	}

Usage

1, recyclerview adapter create ISlideHelper

public class SlideAdapter extends RecyclerView.Adapter {
private ISlideHelper mISlideHelper = new ISlideHelper();

2, use ISlideHelper add holder

@Override public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {

OneSlideViewHolder oneSlideViewHolder = new OneSlideViewHolder(
	LayoutInflater.from(parent.getContext()).inflate(R.layout.one_item, parent, false));
//add holder
mISlideHelper.add(oneSlideViewHolder);
return oneSlideViewHolder;
}

Developed by

ruzhan - [email protected]

License

Copyright 2017 ruzhan

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].