JazzyListView (Parent)

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

License

License

GroupId

GroupId

com.twotoasters.jazzylistview
ArtifactId

ArtifactId

parent
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

pom
Description

Description

JazzyListView (Parent)
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 parent

Filename Size
parent-1.0.0.pom 3 KB
Browse

How to add to project

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

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • library
  • sample

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.0.0