当点击其他项目时,如何在android中的RecyclerView中消耗和折叠卡片视图

时间:2017-09-07 08:22:39

标签: android android-recyclerview collapse cardview

我想构建使用回收视图和cardview的应用程序,如下图所示,当用户点击该项目时,它将展开,当用户点击其他项目时,该项目将消耗该已用完项目将崩溃。 例如:我点击项目2,项目编号2将消耗,然后我点击项目编号4,因此项目编号2将崩溃,项目编号4将消耗。

enter image description here

非常感谢您的回答!

1 个答案:

答案 0 :(得分:2)

您可以使用Expandable recycleler视图(在github上可用)。如果您想使用Recycler视图,您可以使用动画展开和折叠视图,就像切换一样。看看下面的代码:

 public static void expandCard(final View v) {
    v.measure(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    final int targetHeight = v.getMeasuredHeight();
    v.getLayoutParams().height = 1;
    v.setVisibility(View.VISIBLE);
    Animation a = new Animation()
    {
        @Override
        protected void applyTransformation(float interpolatedTime, Transformation t) {
            v.getLayoutParams().height = interpolatedTime == 1
                    ? ViewGroup.LayoutParams.WRAP_CONTENT
                    : (int)(targetHeight * interpolatedTime);
            v.requestLayout();
        }
        @Override
        public boolean willChangeBounds() {
            return true;
        }
    };
    a.setDuration(((int)(targetHeight / v.getContext().getResources().getDisplayMetrics().density))*6);
    v.startAnimation(a);
}

public static void collapseCard(final View v) {
    final int initialHeight = v.getMeasuredHeight();
    Animation a = new Animation()
    {
        @Override
        protected void applyTransformation(float interpolatedTime, Transformation t) {
            if(interpolatedTime == 1){
                v.setVisibility(View.GONE);
            }else{
                v.getLayoutParams().height = initialHeight - (int)(initialHeight * interpolatedTime);
                v.requestLayout();
            }
        }
        @Override
        public boolean willChangeBounds() {
            return true;
        }
    };
    a.setDuration(((int)(initialHeight / v.getContext().getResources().getDisplayMetrics().density))*6);
    v.startAnimation(a);
}