Ramotion / folding-cell-android

:octocat: 📃 FoldingCell is a material design expanding content cell inspired by folding paper material made by @Ramotion

Home Page:https://www.ramotion.com/agency/app-development/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unfold the last two lines, the last line is not complete and cannot be folded

chenfei0928 opened this issue · comments

In rapid succession unfold the last two lines, in the last line is not fully expanded when the penultimate line, the last line is not complete and cannot be folded
ezgif com-video-to-gif 1

me too ,how to solve this

me too T.T

Any luck with this bug?

Me Too!! Searching for solution for this issue!!!

Me Too :( any solution for this

Use NonScrollableListView

public class NonScrollListView extends ListView {

public NonScrollListView(Context context) {
    super(context);
}
public NonScrollListView(Context context, AttributeSet attrs) {
    super(context, attrs);
}
public NonScrollListView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
            Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
    super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
    ViewGroup.LayoutParams params = getLayoutParams();
    params.height = getMeasuredHeight();
}

}

<xxxx.xxxxx.xxxxxx.xxxxx.NonScrollListView
android:id="@+id/mainListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#411a1919"
android:clipChildren="false"
android:clipToPadding="true"
android:divider="@android:color/transparent"
android:dividerHeight="10dp"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:scrollbars="none">

    </xxxx.xxxxx.xxxxxx.xxxxx.NonScrollListView>

Hello, guys. This issue was resolved in new version. Please update to the new version of this lib. It is also now migrated to androidX.