summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/allapps/HeaderElevationController.java
blob: b167fed335c93357b66fa0a8a00359546dfed2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.android.launcher3.allapps;

import android.content.res.Resources;
import android.graphics.Outline;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.view.ViewOutlineProvider;

import com.android.launcher3.BaseRecyclerView;
import com.android.launcher3.R;
import com.android.launcher3.Utilities;

/**
 * Helper class for controlling the header elevation in response to RecyclerView scroll.
 */
public class HeaderElevationController extends RecyclerView.OnScrollListener {

    private final View mHeader;
    private final float mMaxElevation;
    private final float mScrollToElevation;

    private int mCurrentY = 0;

    public HeaderElevationController(View header) {
        mHeader = header;
        final Resources res = mHeader.getContext().getResources();
        mMaxElevation = res.getDimension(R.dimen.all_apps_header_max_elevation);
        mScrollToElevation = res.getDimension(R.dimen.all_apps_header_scroll_to_elevation);

        // We need to provide a custom outline so the shadow only appears on the bottom edge.
        // The top, left and right edges are all extended out, and the shadow is clipped
        // by the parent.
        final ViewOutlineProvider vop = new ViewOutlineProvider() {
            @Override
            public void getOutline(View view, Outline outline) {
                final View parent = (View) mHeader.getParent();

                final int left = parent.getLeft(); // Use the parent to account for offsets
                final int top = view.getTop();
                final int right = left + view.getWidth();
                final int bottom = view.getBottom();

                final int offset = Utilities.pxFromDp(mMaxElevation, res.getDisplayMetrics());
                outline.setRect(left - offset, top - offset, right + offset, bottom);
            }
        };
        mHeader.setOutlineProvider(vop);
    }

    public void reset() {
        mCurrentY = 0;
        onScroll(mCurrentY);
    }

    @Override
    public final void onScrolled(RecyclerView recyclerView, int dx, int dy) {
        mCurrentY = ((BaseRecyclerView) recyclerView).getCurrentScrollY();
        onScroll(mCurrentY);
    }

    private void onScroll(int scrollY) {
        float elevationPct = Math.min(scrollY, mScrollToElevation) / mScrollToElevation;
        float newElevation = mMaxElevation * elevationPct;
        if (Float.compare(mHeader.getElevation(), newElevation) != 0) {
            mHeader.setElevation(newElevation);
        }
    }

}