Cheesesquare:enterAlways产生错误的布局

Gáb*_*bor 5 android android-support-library material-design android-design-library android-collapsingtoolbarlayout

添加enterAlways到Cheesesquare演示的滚动标志:

<android.support.design.widget.CollapsingToolbarLayout
    android:id="@+id/collapsing_toolbar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    app:contentScrim="?attr/colorPrimary"
    app:layout_scrollFlags="scroll|exitUntilCollapsed|enterAlways">
Run Code Online (Sandbox Code Playgroud)

导致错误的布局:

在此输入图像描述

在向下滚动期间,标题正确进入,但它不会停在正确的位置.滚动进一步取代零件:背景图像显示在错误的位置,工具栏因背景颜色的变化而变得不可见.(我还在这里添加了colorPrimary工具栏的背景,使其更加明显,但问题当然不依赖于颜色).这些库是截至今天的最新版本,23.1.0.

是否有任何解决方法或我们必须等待它在库中修复?现在,它似乎是任何需要此功能的应用程序的showstopper.

enterAlwaysCollapsed 虽然有效,但它提供了不同的功能,它不是一种解决方法.

Tal*_*ihr 4

我通过对 AppBarLayout 类源代码进行一些修补解决了这个问题。显然他们不认为人们会这样使用它。或者他们做到了,而我还差得很远。无论如何,它对我有用。

您需要对此方法进行一些小的更改。寻找 SCROLL_FLAG_EXIT_UNTIL_COLLAPSED

 /**
 * Return the scroll range when scrolling down from a nested pre-scroll.
 */
private int getDownNestedPreScrollRange() {
    if (mDownPreScrollRange != INVALID_SCROLL_RANGE) {
        // If we already have a valid value, return it
        return mDownPreScrollRange;
    }

    int range = 0;
    for (int i = getChildCount() - 1; i >= 0; i--) {
        final View child = getChildAt(i);
        final LayoutParams lp = (LayoutParams) child.getLayoutParams();
        final int childHeight = child.getMeasuredHeight();
        final int flags = lp.mScrollFlags;

        if ((flags & LayoutParams.FLAG_QUICK_RETURN) == LayoutParams.FLAG_QUICK_RETURN) {
            // First take the margin into account
            range += lp.topMargin + lp.bottomMargin;
            // The view has the quick return flag combination...
            if ((flags & LayoutParams.SCROLL_FLAG_ENTER_ALWAYS_COLLAPSED) != 0) {
                // If they're set to enter collapsed, use the minimum height
                range += ViewCompat.getMinimumHeight(child);
                // This is what is missing...
            } else if ((flags & LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED) == LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED) {
                range += childHeight - ViewCompat.getMinimumHeight(child);
            } else {
                // Else use the full height
                range += childHeight;
            }
        } else if (range > 0) {
            // If we've hit an non-quick return scrollable view, and we've already hit a
            // quick return view, return now
            break;
        }
    }
    return mDownPreScrollRange = range;
}
Run Code Online (Sandbox Code Playgroud)

如果您使用“android:fitsSystemWindows=”true”,您可能需要减小状态栏高度。

希望能帮助到你。您需要从设计库复制一些类,以允许所有导入和一些将公开的方法。

干杯。