Skip to content

twotoasters/JazzyListView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4a69239 · Mar 16, 2015
Mar 5, 2015
Mar 16, 2015
Mar 5, 2015
Aug 26, 2013
May 6, 2013
Mar 2, 2015
Mar 13, 2014
Mar 5, 2015
Feb 17, 2015
Apr 23, 2013
Feb 17, 2015
Feb 17, 2015
Mar 2, 2015
Feb 14, 2015

Repository files navigation

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.