1

我正在尝试实现 Gmail 应用程序 (ICS) 在删除邮件时提供的功能。我不想删除单元格下方的所有行都向上移动并覆盖已删除的单元格。

这是工作动画:

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false" >

        <translate android:fromYDelta="0%" android:toYDelta="-100%"
            android:duration="@android:integer/config_mediumAnimTime"/>
        <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
            android:duration="@android:integer/config_mediumAnimTime" />

</set>

到目前为止,我想出的是:

public static List<View> getCellsBelow(ListView listView, int position) {
    List<View> cells = new ArrayList<View>();       

    for (int i = position + 1; i <= listView.getLastVisiblePosition(); i++) {
        cells.add(listView.getChildAt(i));
    }

    return cells;
}

我在所选单元格下方收集可见单元格,然后在 foreach 中为它们设置动画。我担心这是性能灾难。我也很难通知适配器它应该重新加载它的内容。通常我会打电话notifyDataSetChangedonAnimationEnd但现在有几个动画一个接一个地播放。

有什么建议吗?也许有一些东西可以刺激地为几个视图设置动画?

4

3 回答 3

5

更新::我建议查看在 Android 团队工作的 Chet Haase 的这个解决方案。特别是如果您不是为 Android 2.3 及更低版本开发。


这应该正是您想要的。

list.setOnItemLongClickListener(new OnItemLongClickListener() {

    @Override
    public boolean onItemLongClick(AdapterView<?> parent,
            final View view, final int position, long id) {
        removeRow(view, position);
        return true;
    }
});

private void removeRow(final View row, final int position) {
    final int initialHeight = row.getHeight();
    Animation animation = new Animation() {
        @Override
        protected void applyTransformation(float interpolatedTime,
                Transformation t) {
            super.applyTransformation(interpolatedTime, t);
            int newHeight = (int) (initialHeight * (1 - interpolatedTime));
            if (newHeight > 0) {
                row.getLayoutParams().height = newHeight;
                row.requestLayout();
            }
        }
    };
    animation.setAnimationListener(new AnimationListener() {
        @Override
        public void onAnimationStart(Animation animation) {
        }
        @Override
        public void onAnimationRepeat(Animation animation) {
        }
        @Override
        public void onAnimationEnd(Animation animation) {
            row.getLayoutParams().height = initialHeight;
            row.requestLayout();
            items.remove(position);
            ((BaseAdapter) list.getAdapter()).notifyDataSetChanged();
        }
    });
    animation.setDuration(300);
    row.startAnimation(animation);
}
于 2013-01-13T18:15:31.380 回答
1

你可以试试我为此制作的 ListView。它在Github上。

于 2013-01-13T17:06:44.907 回答
1

本文的原作者在此处将代码作为 Gist 发布:https ://gist.github.com/2980593 ,这是来自 Roman Nurik 的原始 Google+ 帖子:https: //plus.google.com/113735310430199015092/posts/Fgo1p5uWZLu

于 2013-01-13T17:24:26.183 回答