10

GridView を新しい RecyclerView (GridLayoutManager を使用) に置き換えようとしていますが、gridLayoutAnimation ( ClassCastException: LayoutAnimationController$AnimationParameters cannot be cast to GridLayoutAnimationController$AnimationParameters) にうまく対応していないようです。通常のレイアウト アニメーションで動作しますが、グリッドであるため、タブレットでは完了するのに時間がかかりすぎます。

私が達成しようとしているのは、Hierarchical Timingに似ています。例のビデオを見ると、レイアウト アニメーションが左上から右下に斜めに移動することがわかります。通常のレイアウト アニメーションは行ごとにアニメーションを実行するため、大きなグリッド (タブレットなど) では完了するのに時間がかかりすぎます。ItemAnimator も調べてみましたが、「しない」の例のように、すべてのセルで同時にアニメーションを実行するだけです。

RecyclerView でこのグリッド レイアウト アニメーションを実現する方法はありますか?

これは gridview_layout_animation.xml です。

<!-- replace gridLayoutAnimation with layoutAnimation and -->
<!-- replace column- and rowDelay with delay for RecyclerView -->

<gridLayoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
    android:columnDelay="15%"
    android:rowDelay="15%"
    android:animation="@anim/grow_in"
    android:animationOrder="normal"
    android:direction="top_to_bottom|left_to_right"
    android:interpolator="@android:interpolator/linear"
/>

これがアニメーションの grow_in.xml です。

<set android:shareInterpolator="false"
 xmlns:android="http://schemas.android.com/apk/res/android">
    <scale
        android:interpolator="@android:interpolator/decelerate_quint"
        android:fromXScale="0.0"
        android:toXScale="1.0"
        android:fromYScale="0.0"
        android:toYScale="1.0"
        android:pivotX="50%"
        android:pivotY="50%"
        android:fillAfter="true"
        android:duration="400"
        android:startOffset="200"
    />
</set>

編集: Galaxas0 の回答に基づいて、拡張するカスタム ビューを使用するだけで済むソリューションを次に示しますRecyclerView。基本的にattachLayoutAnimationParameters()メソッドをオーバーライドするだけです。これ<gridLayoutAnimation>は、GridView と同じように機能します。

public class GridRecyclerView extends RecyclerView {

    public GridRecyclerView(Context context) {
        super(context);
    }

    public GridRecyclerView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public GridRecyclerView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public void setLayoutManager(LayoutManager layout) {
        if (layout instanceof GridLayoutManager){
            super.setLayoutManager(layout);
        } else {
            throw new ClassCastException("You should only use a GridLayoutManager with GridRecyclerView.");
            }
        }

    @Override
    protected void attachLayoutAnimationParameters(View child, ViewGroup.LayoutParams params, int index, int count) {

        if (getAdapter() != null && getLayoutManager() instanceof GridLayoutManager){

            GridLayoutAnimationController.AnimationParameters animationParams =
                (GridLayoutAnimationController.AnimationParameters) params.layoutAnimationParameters;

            if (animationParams == null) {
                animationParams = new GridLayoutAnimationController.AnimationParameters();
                params.layoutAnimationParameters = animationParams;
            }

            int columns = ((GridLayoutManager) getLayoutManager()).getSpanCount();

            animationParams.count = count;
            animationParams.index = index;
            animationParams.columnsCount = columns;
            animationParams.rowsCount = count / columns;

            final int invertedIndex = count - 1 - index;
            animationParams.column = columns - 1 - (invertedIndex % columns);
            animationParams.row = animationParams.rowsCount - 1 - invertedIndex / columns;

        } else {
            super.attachLayoutAnimationParameters(child, params, index, count);
        }
    }
}
4

3 に答える 3

6

LayoutAnimationControllerViewGroupはと の両方に結合され、以下のメソッドListViewGridView拡張して子の を提供しますanimationParams。問題は、クラスキャストできないGridLayoutAnimationController独自のものを必要とすることです。AnimationParameters

    /**
     * Subclasses should override this method to set layout animation
     * parameters on the supplied child.
     *
     * @param child the child to associate with animation parameters
     * @param params the child's layout parameters which hold the animation
     *        parameters
     * @param index the index of the child in the view group
     * @param count the number of children in the view group
     */
    protected void attachLayoutAnimationParameters(View child,
            LayoutParams params, int index, int count) {
        LayoutAnimationController.AnimationParameters animationParams =
                    params.layoutAnimationParameters;
        if (animationParams == null) {
            animationParams = new LayoutAnimationController.AnimationParameters();
            params.layoutAnimationParameters = animationParams;
        }

        animationParams.count = count;
        animationParams.index = index;
    }

このメソッドはデフォルトで のLayoutAnimationController.AnimationParameters代わりに を追加するGridLayoutAnimationController.AnimationParametersため、事前に を作成して添付することを修正する必要があります。実装する必要があるのは、GridViewすでに行っていることです:

@Override
protected void attachLayoutAnimationParameters(View child,
        ViewGroup.LayoutParams params, int index, int count) {

    GridLayoutAnimationController.AnimationParameters animationParams =
            (GridLayoutAnimationController.AnimationParameters) params.layoutAnimationParameters;

    if (animationParams == null) {
        animationParams = new GridLayoutAnimationController.AnimationParameters();
        params.layoutAnimationParameters = animationParams;
    }

    animationParams.count = count;
    animationParams.index = index;
    animationParams.columnsCount = mNumColumns;
    animationParams.rowsCount = count / mNumColumns;

    if (!mStackFromBottom) {
        animationParams.column = index % mNumColumns;
        animationParams.row = index / mNumColumns;
    } else {
        final int invertedIndex = count - 1 - index;

        animationParams.column = mNumColumns - 1 - (invertedIndex % mNumColumns);
        animationParams.row = animationParams.rowsCount - 1 - invertedIndex / mNumColumns;
    }
}

を複製するためにできる最も近いことは、アニメーションをトリガーする呼び出しの前に実行できるようにGridView、変更を押し込むことです。onBindViewHolder()dispatchDraw

ViewGroup.LayoutParams params = holder.itemView.getLayoutParams();
        GridLayoutAnimationController.AnimationParameters animationParams = new GridLayoutAnimationController.AnimationParameters();
        params.layoutAnimationParameters = animationParams;

        animationParams.count = 9;
        animationParams.columnsCount = 3;
        animationParams.rowsCount = 3;
        animationParams.index = position;
        animationParams.column = position / animationParams.columnsCount;
        animationParams.row = position % animationParams.columnsCount;

RecyclerViewの newを使用している場合GridLayoutManagerは、そこからパラメータを取得してみてください。上記のサンプルは、動作することを示す概念実証です。私のアプリケーションでも正確に機能しない値をハードコードしました。

これは、実際のドキュメントやサンプルがない API 1 以降に存在する API であるため、その機能を複製する方法がたくさんあることを考えると、使用しないことを強くお勧めします。

于 2014-10-27T19:43:18.760 に答える
4

よりシンプルなソリューション

TransitionManager.beginDelayedTransition(moviesGridRecycler);
gridLayoutManager.setSpanCount(gridColumns);
adapter.notifyDataSetChanged();

setHasStableIds(true);ただし、 RecyclerAdapter を作成して実装することを忘れないでくださいgetItemID()

@Override
public long getItemId(int position) {
   return yourItemSpecificLongID;
}
于 2016-05-31T12:09:37.707 に答える