JazzyListView

Android library for adding animations to list items when they become visible

License

License

GroupId

GroupId

com.twotoasters.jazzylistview
ArtifactId

ArtifactId

library-recyclerview
Last Version

Last Version

1.2.1
Release Date

Release Date

Type

Type

aar
Description

Description

JazzyListView
Android library for adding animations to list items when they become visible
Project URL

Project URL

https://github.com/twotoasters/JazzyListView
Source Code Management

Source Code Management

https://github.com/twotoasters/JazzyListView

Download library-recyclerview

How to add to project

<!-- https://jarcasting.com/artifacts/com.twotoasters.jazzylistview/library-recyclerview/ -->
<dependency>
    <groupId>com.twotoasters.jazzylistview</groupId>
    <artifactId>library-recyclerview</artifactId>
    <version>1.2.1</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.twotoasters.jazzylistview/library-recyclerview/
implementation 'com.twotoasters.jazzylistview:library-recyclerview:1.2.1'
// https://jarcasting.com/artifacts/com.twotoasters.jazzylistview/library-recyclerview/
implementation ("com.twotoasters.jazzylistview:library-recyclerview:1.2.1")
'com.twotoasters.jazzylistview:library-recyclerview:aar:1.2.1'
<dependency org="com.twotoasters.jazzylistview" name="library-recyclerview" rev="1.2.1">
  <artifact name="library-recyclerview" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.twotoasters.jazzylistview', module='library-recyclerview', version='1.2.1')
)
libraryDependencies += "com.twotoasters.jazzylistview" % "library-recyclerview" % "1.2.1"
[com.twotoasters.jazzylistview/library-recyclerview "1.2.1"]

Dependencies

compile (3)

Group / Artifact Type Version
com.android.support » recyclerview-v7 jar 21.0.0
com.twotoasters.jazzylistview : library jar 1.2.1
com.android.support » support-v4 jar 21.0.0

Project Modules

There are no modules declared in this project.

JazzyListView

JazzyListView is an extension of ListView designed to animate list item views as they become visible. There are a number of pre-built, bundled effects that can be used by setting the effect in code or an XML layout attribute. Also, it is possible to use a custom effect by implementing a JazzyEffect.

This project was inspired by stroll.js.

Usage

ListView
  1. Include a JazzyListView in your layout
<com.twotoasters.jazzylistview.JazzyListView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
  1. Get a reference to your JazzyListView
JazzyListView list = (JazzyListView) findViewById(R.id.list);
  1. Set your effect
list.setTransitionEffect(new SlideInEffect());
RecyclerView
  1. Include a JazzyListView in your layout
<android.support.v7.widget.RecyclerView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
  1. Get a reference to your RecyclerView
RecyclerView recyclerView = (RecyclerView) findViewById(R.id.list);
  1. Set the JazzyScrollListener (you can set an additional scroll listener on the JazzyScrollListener)
recyclerView.setOnScrollListener(new JazzyRecyclerViewScrollListener());
  1. Set your effect
recyclerView.setTransitionEffect(new SlideInEffect());

Sample App

The sample app demonstrates all of the pre-built effects on a list, grid, and recyclerview. You can build it from source or install it from the Play Store.

Download

compile 'com.twotoasters.jazzylistview:library:1.2.1'
compile 'com.twotoasters.jazzylistview:library-recyclerview:1.2.1'

License

Copyright 2015 Two Toasters

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.
com.twotoasters.jazzylistview

Ticketmaster Mobile Studio

Formerly Two Toasters

Versions

Version
1.2.1
1.2.0
1.1.0