
com.nhaarman.listviewanimations.itemmanipulation.AnimateDismissAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library Show documentation
Show all versions of library Show documentation
ListViewAnimations library
The newest version!
/*
* Copyright 2013 Niek Haarman
*
* 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.
*/
package com.nhaarman.listviewanimations.itemmanipulation;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import com.nhaarman.listviewanimations.BaseAdapterDecorator;
import com.nhaarman.listviewanimations.util.AdapterViewUtil;
import com.nineoldandroids.animation.Animator;
import com.nineoldandroids.animation.AnimatorListenerAdapter;
import com.nineoldandroids.animation.AnimatorSet;
import com.nineoldandroids.animation.ValueAnimator;
import com.nineoldandroids.animation.ValueAnimator.AnimatorUpdateListener;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* A {@link BaseAdapterDecorator} class that provides animations to the removal
* of items in the given {@link BaseAdapter}.
*/
public class AnimateDismissAdapter extends BaseAdapterDecorator {
private final OnDismissCallback mCallback;
/**
* Create a new AnimateDismissAdapter based on the given {@link BaseAdapter}.
*
* @param callback
* The {@link OnDismissCallback} to trigger when the user has
* indicated that she would like to dismiss one or more list
* items.
*/
public AnimateDismissAdapter(final BaseAdapter baseAdapter, final OnDismissCallback callback) {
super(baseAdapter);
mCallback = callback;
}
/**
* Animate dismissal of the item at given position.
*/
@SuppressWarnings("UnusedDeclaration")
public void animateDismiss(final int position) {
animateDismiss(Arrays.asList(position));
}
/**
* Animate dismissal of the items at given positions.
*/
public void animateDismiss(final Collection positions) {
final List positionsCopy = new ArrayList(positions);
if (getAbsListView() == null) {
throw new IllegalStateException("Call setAbsListView() on this AnimateDismissAdapter before calling setAdapter()!");
}
List views = getVisibleViewsForPositions(positionsCopy);
if (!views.isEmpty()) {
List animators = new ArrayList();
for (final View view : views) {
animators.add(createAnimatorForView(view));
}
AnimatorSet animatorSet = new AnimatorSet();
Animator[] animatorsArray = new Animator[animators.size()];
for (int i = 0; i < animatorsArray.length; i++) {
animatorsArray[i] = animators.get(i);
}
animatorSet.playTogether(animatorsArray);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(final Animator animator) {
invokeCallback(positionsCopy);
}
});
animatorSet.start();
} else {
invokeCallback(positionsCopy);
}
}
private void invokeCallback(final Collection positions) {
ArrayList positionsList = new ArrayList(positions);
Collections.sort(positionsList);
int[] dismissPositions = new int[positionsList.size()];
for (int i = 0; i < positionsList.size(); i++) {
dismissPositions[i] = positionsList.get(positionsList.size() - 1 - i);
}
mCallback.onDismiss(getAbsListView(), dismissPositions);
}
private List getVisibleViewsForPositions(final Collection positions) {
List views = new ArrayList();
for (int i = 0; i < getAbsListView().getChildCount(); i++) {
View child = getAbsListView().getChildAt(i);
if (positions.contains(AdapterViewUtil.getPositionForView(getAbsListView(), child))) {
views.add(child);
}
}
return views;
}
private Animator createAnimatorForView(final View view) {
final ViewGroup.LayoutParams lp = view.getLayoutParams();
final int originalHeight = view.getHeight();
ValueAnimator animator = ValueAnimator.ofInt(originalHeight, 0);
animator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(final Animator animator) {
lp.height = 0;
view.setLayoutParams(lp);
}
});
animator.addUpdateListener(new AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(final ValueAnimator valueAnimator) {
lp.height = (Integer) valueAnimator.getAnimatedValue();
view.setLayoutParams(lp);
}
});
return animator;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy