SlidingPaneLayout.java revision 72c7316b081c3134f7b0566f703dfee7c970eade
1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.support.v4.widget;
18
19import android.content.Context;
20import android.content.res.TypedArray;
21import android.graphics.Bitmap;
22import android.graphics.Canvas;
23import android.graphics.Paint;
24import android.graphics.PorterDuff;
25import android.graphics.PorterDuffColorFilter;
26import android.graphics.Rect;
27import android.graphics.drawable.Drawable;
28import android.os.Build;
29import android.os.Parcel;
30import android.os.Parcelable;
31import android.support.v4.view.MotionEventCompat;
32import android.support.v4.view.ViewCompat;
33import android.util.AttributeSet;
34import android.util.Log;
35import android.view.MotionEvent;
36import android.view.View;
37import android.view.ViewConfiguration;
38import android.view.ViewGroup;
39
40import java.lang.reflect.Field;
41import java.lang.reflect.Method;
42
43/**
44 * SlidingPaneLayout provides a horizontal, multi-pane layout for use at the top level
45 * of a UI. A left (or first) pane is treated as a content list or browser, subordinate to a
46 * primary detail view for displaying content.
47 *
48 * <p>Child views may overlap if their combined width exceeds the available width
49 * in the SlidingPaneLayout. When this occurs the user may slide the topmost view out of the way
50 * by dragging it, or by navigating in the direction of the overlapped view using a keyboard.
51 * If the content of the dragged child view is itself horizontally scrollable, the user may
52 * grab it by the very edge.</p>
53 *
54 * <p>Thanks to this sliding behavior, SlidingPaneLayout may be suitable for creating layouts
55 * that can smoothly adapt across many different screen sizes, expanding out fully on larger
56 * screens and collapsing on smaller screens.</p>
57 *
58 * <p>SlidingPaneLayout is distinct from a navigation drawer as described in the design
59 * guide and should not be used in the same scenarios. SlidingPaneLayout should be thought
60 * of only as a way to allow a two-pane layout normally used on larger screens to adapt to smaller
61 * screens in a natural way. The interaction patterns expressed by SlidingPaneLayout imply
62 * a physicality and direct information hierarchy between panes that does not necessarily exist
63 * in a scenario where a navigation drawer should be used instead.</p>
64 *
65 * <p>Appropriate uses of SlidingPaneLayout include pairings of panes such as a contact list and
66 * subordinate interactions with those contacts, or an email thread list with the content pane
67 * displaying the contents of the selected thread. Inappropriate uses of SlidingPaneLayout include
68 * switching between disparate functions of your app, such as jumping from a social stream view
69 * to a view of your personal profile - cases such as this should use the navigation drawer
70 * pattern instead. ({@link DrawerLayout DrawerLayout} implements this pattern.)</p>
71 *
72 * <p>Like {@link android.widget.LinearLayout LinearLayout}, SlidingPaneLayout supports
73 * the use of the layout parameter <code>layout_weight</code> on child views to determine
74 * how to divide leftover space after measurement is complete. It is only relevant for width.
75 * When views do not overlap weight behaves as it does in a LinearLayout.</p>
76 *
77 * <p>When views do overlap, weight on a slideable pane indicates that the pane should be
78 * sized to fill all available space in the closed state. Weight on a pane that becomes covered
79 * indicates that the pane should be sized to fill all available space except a small minimum strip
80 * that the user may use to grab the slideable view and pull it back over into a closed state.</p>
81 *
82 * <p>Experimental. This class may be removed.</p>
83 */
84public class SlidingPaneLayout extends ViewGroup {
85    private static final String TAG = "SlidingPaneLayout";
86
87    /**
88     * Default size of the overhang for a pane in the open state.
89     * At least this much of a sliding pane will remain visible.
90     * This indicates that there is more content available and provides
91     * a "physical" edge to grab to pull it closed.
92     */
93    private static final int DEFAULT_OVERHANG_SIZE = 32; // dp;
94
95    /**
96     * If no fade color is given by default it will fade to 80% gray.
97     */
98    private static final int DEFAULT_FADE_COLOR = 0xcccccccc;
99
100    /**
101     * The fade color used for the sliding panel. 0 = no fading.
102     */
103    private int mSliderFadeColor = DEFAULT_FADE_COLOR;
104
105    /**
106     * The fade color used for the panel covered by the slider. 0 = no fading.
107     */
108    private int mCoveredFadeColor;
109
110    /**
111     * Drawable used to draw the shadow between panes.
112     */
113    private Drawable mShadowDrawable;
114
115    /**
116     * The size of the overhang in pixels.
117     * This is the minimum section of the sliding panel that will
118     * be visible in the open state to allow for a closing drag.
119     */
120    private final int mOverhangSize;
121
122    /**
123     * True if a panel can slide with the current measurements
124     */
125    private boolean mCanSlide;
126
127    /**
128     * The child view that can slide, if any.
129     */
130    private View mSlideableView;
131
132    /**
133     * How far the panel is offset from its closed position.
134     * range [0, 1] where 0 = closed, 1 = open.
135     */
136    private float mSlideOffset;
137
138    /**
139     * How far the non-sliding panel is parallaxed from its usual position when open.
140     * range [0, 1]
141     */
142    private float mParallaxOffset;
143
144    /**
145     * How far in pixels the slideable panel may move.
146     */
147    private int mSlideRange;
148
149    /**
150     * A panel view is locked into internal scrolling or another condition that
151     * is preventing a drag.
152     */
153    private boolean mIsUnableToDrag;
154
155    /**
156     * Distance in pixels to parallax the fixed pane by when fully closed
157     */
158    private int mParallaxBy;
159
160    private float mInitialMotionX;
161    private float mInitialMotionY;
162
163    private PanelSlideListener mPanelSlideListener;
164
165    private final ViewDragHelper mDragHelper;
166
167    /**
168     * Stores whether or not the pane was open the last time it was slideable.
169     * If open/close operations are invoked this state is modified. Used by
170     * instance state save/restore.
171     */
172    private boolean mPreservedOpenState;
173    private boolean mFirstLayout = true;
174
175    private final Rect mTmpRect = new Rect();
176
177    static final SlidingPanelLayoutImpl IMPL;
178
179    static {
180        final int deviceVersion = Build.VERSION.SDK_INT;
181        if (deviceVersion >= 17) {
182            IMPL = new SlidingPanelLayoutImplJBMR1();
183        } else if (deviceVersion >= 16) {
184            IMPL = new SlidingPanelLayoutImplJB();
185        } else {
186            IMPL = new SlidingPanelLayoutImplBase();
187        }
188    }
189
190    /**
191     * Listener for monitoring events about sliding panes.
192     */
193    public interface PanelSlideListener {
194        /**
195         * Called when a sliding pane's position changes.
196         * @param panel The child view that was moved
197         * @param slideOffset The new offset of this sliding pane within its range, from 0-1
198         */
199        public void onPanelSlide(View panel, float slideOffset);
200        /**
201         * Called when a sliding pane becomes slid completely open. The pane may or may not
202         * be interactive at this point depending on how much of the pane is visible.
203         * @param panel The child view that was slid to an open position, revealing other panes
204         */
205        public void onPanelOpened(View panel);
206
207        /**
208         * Called when a sliding pane becomes slid completely closed. The pane is now guaranteed
209         * to be interactive. It may now obscure other views in the layout.
210         * @param panel The child view that was slid to a closed position
211         */
212        public void onPanelClosed(View panel);
213    }
214
215    /**
216     * No-op stubs for {@link PanelSlideListener}. If you only want to implement a subset
217     * of the listener methods you can extend this instead of implement the full interface.
218     */
219    public static class SimplePanelSlideListener implements PanelSlideListener {
220        @Override
221        public void onPanelSlide(View panel, float slideOffset) {
222        }
223        @Override
224        public void onPanelOpened(View panel) {
225        }
226        @Override
227        public void onPanelClosed(View panel) {
228        }
229    }
230
231    public SlidingPaneLayout(Context context) {
232        this(context, null);
233    }
234
235    public SlidingPaneLayout(Context context, AttributeSet attrs) {
236        this(context, attrs, 0);
237    }
238
239    public SlidingPaneLayout(Context context, AttributeSet attrs, int defStyle) {
240        super(context, attrs, defStyle);
241
242        final float density = context.getResources().getDisplayMetrics().density;
243        mOverhangSize = (int) (DEFAULT_OVERHANG_SIZE * density + 0.5f);
244
245        final ViewConfiguration viewConfig = ViewConfiguration.get(context);
246
247        setWillNotDraw(false);
248
249        mDragHelper = ViewDragHelper.create(this, 0.5f, new DragHelperCallback());
250        mDragHelper.setEdgeTrackingEnabled(ViewDragHelper.EDGE_LEFT);
251    }
252
253    /**
254     * Set a distance to parallax the lower pane by when the upper pane is in its
255     * fully closed state. The lower pane will scroll between this position and
256     * its fully open state.
257     *
258     * @param parallaxBy Distance to parallax by in pixels
259     */
260    public void setParallaxDistance(int parallaxBy) {
261        mParallaxBy = parallaxBy;
262        requestLayout();
263    }
264
265    /**
266     * @return The distance the lower pane will parallax by when the upper pane is fully closed.
267     *
268     * @see #setParallaxDistance(int)
269     */
270    public int getParallaxDistance() {
271        return mParallaxBy;
272    }
273
274    /**
275     * Set the color used to fade the sliding pane out when it is slid most of the way offscreen.
276     *
277     * @param color An ARGB-packed color value
278     */
279    public void setSliderFadeColor(int color) {
280        mSliderFadeColor = color;
281    }
282
283    /**
284     * @return The ARGB-packed color value used to fade the sliding pane
285     */
286    public int getSliderFadeColor() {
287        return mSliderFadeColor;
288    }
289
290    /**
291     * Set the color used to fade the pane covered by the sliding pane out when the pane
292     * will become fully covered in the closed state.
293     *
294     * @param color An ARGB-packed color value
295     */
296    public void setCoveredFadeColor(int color) {
297        mCoveredFadeColor = color;
298    }
299
300    /**
301     * @return The ARGB-packed color value used to fade the fixed pane
302     */
303    public int getCoveredFadeColor() {
304        return mCoveredFadeColor;
305    }
306
307    public void setPanelSlideListener(PanelSlideListener listener) {
308        mPanelSlideListener = listener;
309    }
310
311    void dispatchOnPanelSlide(View panel) {
312        if (mPanelSlideListener != null) {
313            mPanelSlideListener.onPanelSlide(panel, mSlideOffset);
314        }
315    }
316
317    void dispatchOnPanelOpened(View panel) {
318        if (mPanelSlideListener != null) {
319            mPanelSlideListener.onPanelOpened(panel);
320        }
321    }
322
323    void dispatchOnPanelClosed(View panel) {
324        if (mPanelSlideListener != null) {
325            mPanelSlideListener.onPanelClosed(panel);
326        }
327    }
328
329    @Override
330    protected void onAttachedToWindow() {
331        super.onAttachedToWindow();
332        mFirstLayout = true;
333    }
334
335    @Override
336    protected void onDetachedFromWindow() {
337        super.onDetachedFromWindow();
338        mFirstLayout = true;
339    }
340
341    @Override
342    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
343        final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
344        final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
345        final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
346        final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
347
348        if (widthMode != MeasureSpec.EXACTLY) {
349            throw new IllegalStateException("Width must have an exact value or MATCH_PARENT");
350        } else if (heightMode == MeasureSpec.UNSPECIFIED) {
351            throw new IllegalStateException("Height must not be UNSPECIFIED");
352        }
353
354        int layoutHeight = 0;
355        int maxLayoutHeight = -1;
356        switch (heightMode) {
357            case MeasureSpec.EXACTLY:
358                layoutHeight = maxLayoutHeight = heightSize - getPaddingTop() - getPaddingBottom();
359                break;
360            case MeasureSpec.AT_MOST:
361                maxLayoutHeight = heightSize - getPaddingTop() - getPaddingBottom();
362                break;
363        }
364
365        float weightSum = 0;
366        boolean canSlide = false;
367        int widthRemaining = widthSize - getPaddingLeft() - getPaddingRight();
368        final int childCount = getChildCount();
369
370        if (childCount > 2) {
371            Log.e(TAG, "onMeasure: More than two child views are not supported.");
372        }
373
374        // We'll find the current one below.
375        mSlideableView = null;
376
377        // First pass. Measure based on child LayoutParams width/height.
378        // Weight will incur a second pass.
379        for (int i = 0; i < childCount; i++) {
380            final View child = getChildAt(i);
381            final LayoutParams lp = (LayoutParams) child.getLayoutParams();
382
383            if (child.getVisibility() == GONE) {
384                lp.dimWhenOffset = false;
385                continue;
386            }
387
388            if (lp.weight > 0) {
389                weightSum += lp.weight;
390
391                // If we have no width, weight is the only contributor to the final size.
392                // Measure this view on the weight pass only.
393                if (lp.width == 0) continue;
394            }
395
396            int childWidthSpec;
397            final int horizontalMargin = lp.leftMargin + lp.rightMargin;
398            if (lp.width == LayoutParams.WRAP_CONTENT) {
399                childWidthSpec = MeasureSpec.makeMeasureSpec(widthSize - horizontalMargin,
400                        MeasureSpec.AT_MOST);
401            } else if (lp.width == LayoutParams.FILL_PARENT) {
402                childWidthSpec = MeasureSpec.makeMeasureSpec(widthSize - horizontalMargin,
403                        MeasureSpec.EXACTLY);
404            } else {
405                childWidthSpec = MeasureSpec.makeMeasureSpec(lp.width, MeasureSpec.EXACTLY);
406            }
407
408            int childHeightSpec;
409            if (lp.height == LayoutParams.WRAP_CONTENT) {
410                childHeightSpec = MeasureSpec.makeMeasureSpec(maxLayoutHeight, MeasureSpec.AT_MOST);
411            } else if (lp.height == LayoutParams.FILL_PARENT) {
412                childHeightSpec = MeasureSpec.makeMeasureSpec(maxLayoutHeight, MeasureSpec.EXACTLY);
413            } else {
414                childHeightSpec = MeasureSpec.makeMeasureSpec(lp.height, MeasureSpec.EXACTLY);
415            }
416
417            child.measure(childWidthSpec, childHeightSpec);
418            final int childWidth = child.getMeasuredWidth();
419            final int childHeight = child.getMeasuredHeight();
420
421            if (heightMode == MeasureSpec.AT_MOST && childHeight > layoutHeight) {
422                layoutHeight = Math.min(childHeight, maxLayoutHeight);
423            }
424
425            widthRemaining -= childWidth;
426            canSlide |= lp.slideable = widthRemaining < 0;
427            if (lp.slideable) {
428                mSlideableView = child;
429            }
430        }
431
432        // Resolve weight and make sure non-sliding panels are smaller than the full screen.
433        if (canSlide || weightSum > 0) {
434            final int fixedPanelWidthLimit = widthSize - mOverhangSize;
435
436            for (int i = 0; i < childCount; i++) {
437                final View child = getChildAt(i);
438
439                if (child.getVisibility() == GONE) {
440                    continue;
441                }
442
443                final LayoutParams lp = (LayoutParams) child.getLayoutParams();
444
445                final boolean skippedFirstPass = lp.width == 0 && lp.weight > 0;
446                final int measuredWidth = skippedFirstPass ? 0 : child.getMeasuredWidth();
447                if (canSlide && child != mSlideableView) {
448                    if (lp.width < 0 && (measuredWidth > fixedPanelWidthLimit || lp.weight > 0)) {
449                        // Fixed panels in a sliding configuration should
450                        // be clamped to the fixed panel limit.
451                        final int childHeightSpec;
452                        if (skippedFirstPass) {
453                            // Do initial height measurement if we skipped measuring this view
454                            // the first time around.
455                            if (lp.height == LayoutParams.WRAP_CONTENT) {
456                                childHeightSpec = MeasureSpec.makeMeasureSpec(maxLayoutHeight,
457                                        MeasureSpec.AT_MOST);
458                            } else if (lp.height == LayoutParams.FILL_PARENT) {
459                                childHeightSpec = MeasureSpec.makeMeasureSpec(maxLayoutHeight,
460                                        MeasureSpec.EXACTLY);
461                            } else {
462                                childHeightSpec = MeasureSpec.makeMeasureSpec(lp.height,
463                                        MeasureSpec.EXACTLY);
464                            }
465                        } else {
466                            childHeightSpec = MeasureSpec.makeMeasureSpec(
467                                    child.getMeasuredHeight(), MeasureSpec.EXACTLY);
468                        }
469                        final int childWidthSpec = MeasureSpec.makeMeasureSpec(
470                                fixedPanelWidthLimit, MeasureSpec.EXACTLY);
471                        child.measure(childWidthSpec, childHeightSpec);
472                    }
473                } else if (lp.weight > 0) {
474                    int childHeightSpec;
475                    if (lp.width == 0) {
476                        // This was skipped the first time; figure out a real height spec.
477                        if (lp.height == LayoutParams.WRAP_CONTENT) {
478                            childHeightSpec = MeasureSpec.makeMeasureSpec(maxLayoutHeight,
479                                    MeasureSpec.AT_MOST);
480                        } else if (lp.height == LayoutParams.FILL_PARENT) {
481                            childHeightSpec = MeasureSpec.makeMeasureSpec(maxLayoutHeight,
482                                    MeasureSpec.EXACTLY);
483                        } else {
484                            childHeightSpec = MeasureSpec.makeMeasureSpec(lp.height,
485                                    MeasureSpec.EXACTLY);
486                        }
487                    } else {
488                        childHeightSpec = MeasureSpec.makeMeasureSpec(
489                                child.getMeasuredHeight(), MeasureSpec.EXACTLY);
490                    }
491
492                    if (canSlide) {
493                        // Consume available space
494                        final int horizontalMargin = lp.leftMargin + lp.rightMargin;
495                        final int newWidth = widthSize - horizontalMargin;
496                        final int childWidthSpec = MeasureSpec.makeMeasureSpec(
497                                newWidth, MeasureSpec.EXACTLY);
498                        if (measuredWidth != newWidth) {
499                            child.measure(childWidthSpec, childHeightSpec);
500                        }
501                    } else {
502                        // Distribute the extra width proportionally similar to LinearLayout
503                        final int widthToDistribute = Math.max(0, widthRemaining);
504                        final int addedWidth = (int) (lp.weight * widthToDistribute / weightSum);
505                        final int childWidthSpec = MeasureSpec.makeMeasureSpec(
506                                measuredWidth + addedWidth, MeasureSpec.EXACTLY);
507                        child.measure(childWidthSpec, childHeightSpec);
508                    }
509                }
510            }
511        }
512
513        setMeasuredDimension(widthSize, layoutHeight);
514        mCanSlide = canSlide;
515        if (mDragHelper.getViewDragState() != ViewDragHelper.STATE_IDLE && !canSlide) {
516            // Cancel scrolling in progress, it's no longer relevant.
517            mDragHelper.abort();
518        }
519    }
520
521    @Override
522    protected void onLayout(boolean changed, int l, int t, int r, int b) {
523        final int width = r - l;
524        final int paddingLeft = getPaddingLeft();
525        final int paddingRight = getPaddingRight();
526        final int paddingTop = getPaddingTop();
527
528        final int childCount = getChildCount();
529        int xStart = paddingLeft;
530        int nextXStart = xStart;
531
532        for (int i = 0; i < childCount; i++) {
533            final View child = getChildAt(i);
534
535            if (child.getVisibility() == GONE) {
536                continue;
537            }
538
539            final LayoutParams lp = (LayoutParams) child.getLayoutParams();
540
541            final int childWidth = child.getMeasuredWidth();
542            int offset = 0;
543
544            if (lp.slideable) {
545                final int margin = lp.leftMargin + lp.rightMargin;
546                final int range = Math.min(nextXStart,
547                        width - paddingRight - mOverhangSize) - xStart - margin;
548                mSlideRange = range;
549                lp.dimWhenOffset = xStart + lp.leftMargin + range + childWidth / 2 >
550                        width - paddingRight;
551                xStart += (int) (range * mSlideOffset) + lp.leftMargin;
552            } else if (mCanSlide && mParallaxBy != 0) {
553                offset = (int) ((1 - mSlideOffset) * mParallaxBy);
554                xStart = nextXStart;
555            } else {
556                xStart = nextXStart;
557            }
558
559            final int childLeft = xStart - offset;
560            final int childRight = childLeft + childWidth;
561            final int childTop = paddingTop;
562            final int childBottom = childTop + child.getMeasuredHeight();
563            child.layout(childLeft, paddingTop, childRight, childBottom);
564
565            nextXStart += child.getWidth();
566        }
567
568        if (mFirstLayout && mCanSlide) {
569            mSlideOffset = mPreservedOpenState ? 1.f : 0;
570            if (mParallaxBy != 0) {
571                parallaxOtherViews(mSlideOffset);
572            }
573            if (((LayoutParams) mSlideableView.getLayoutParams()).dimWhenOffset) {
574                dimChildView(mSlideableView, mSlideOffset, mSliderFadeColor);
575            }
576        }
577
578        mFirstLayout = false;
579    }
580
581    @Override
582    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
583        super.onSizeChanged(w, h, oldw, oldh);
584        // Recalculate sliding panes and their details
585        if (w != oldw) {
586            mFirstLayout = true;
587        }
588    }
589
590    @Override
591    public void requestChildFocus(View child, View focused) {
592        super.requestChildFocus(child, focused);
593        if (!isInTouchMode() && !mCanSlide) {
594            mPreservedOpenState = child == mSlideableView;
595        }
596    }
597
598    @Override
599    public boolean onInterceptTouchEvent(MotionEvent ev) {
600        final int action = MotionEventCompat.getActionMasked(ev);
601
602        // Preserve the open state based on the last view that was touched.
603        if (!mCanSlide && action == MotionEvent.ACTION_DOWN && getChildCount() > 1) {
604            // After the first things will be slideable.
605            final View secondChild = getChildAt(1);
606            if (secondChild != null) {
607                mPreservedOpenState = !mDragHelper.isViewUnder(secondChild,
608                        (int) ev.getX(), (int) ev.getY());
609            }
610        }
611
612        if (!mCanSlide || (mIsUnableToDrag && action != MotionEvent.ACTION_DOWN)) {
613            mDragHelper.cancel();
614            return super.onInterceptTouchEvent(ev);
615        }
616
617        if (action == MotionEvent.ACTION_CANCEL || action == MotionEvent.ACTION_UP) {
618            mDragHelper.cancel();
619            return false;
620        }
621
622        boolean interceptTap = false;
623
624        switch (action) {
625            case MotionEvent.ACTION_DOWN: {
626                mIsUnableToDrag = false;
627                final float x = ev.getX();
628                final float y = ev.getY();
629                mInitialMotionX = x;
630                mInitialMotionY = y;
631
632                if (mDragHelper.isViewUnder(mSlideableView, (int) x, (int) y) &&
633                        isDimmed(mSlideableView)) {
634                    interceptTap = true;
635                }
636                break;
637            }
638
639            case MotionEvent.ACTION_MOVE: {
640                final float x = ev.getX();
641                final float y = ev.getY();
642                final float adx = Math.abs(x - mInitialMotionX);
643                final float ady = Math.abs(y - mInitialMotionY);
644                final int slop = mDragHelper.getTouchSlop();
645                if (adx > slop && ady > adx) {
646                    mDragHelper.cancel();
647                    mIsUnableToDrag = true;
648                    return false;
649                }
650            }
651        }
652
653        final boolean interceptForDrag = mDragHelper.shouldInterceptTouchEvent(ev);
654
655        return interceptForDrag || interceptTap;
656    }
657
658    @Override
659    public boolean onTouchEvent(MotionEvent ev) {
660        if (!mCanSlide) {
661            return super.onTouchEvent(ev);
662        }
663
664        mDragHelper.processTouchEvent(ev);
665
666        final int action = ev.getAction();
667        boolean wantTouchEvents = true;
668
669        switch (action & MotionEventCompat.ACTION_MASK) {
670            case MotionEvent.ACTION_DOWN: {
671                final float x = ev.getX();
672                final float y = ev.getY();
673                mInitialMotionX = x;
674                mInitialMotionY = y;
675                break;
676            }
677
678            case MotionEvent.ACTION_UP: {
679                if (isDimmed(mSlideableView)) {
680                    final float x = ev.getX();
681                    final float y = ev.getY();
682                    final float dx = x - mInitialMotionX;
683                    final float dy = y - mInitialMotionY;
684                    final int slop = mDragHelper.getTouchSlop();
685                    if (dx * dx + dy * dy < slop * slop &&
686                            mDragHelper.isViewUnder(mSlideableView, (int) x, (int) y)) {
687                        // Taps close a dimmed open pane.
688                        closePane(mSlideableView, 0);
689                        break;
690                    }
691                }
692                break;
693            }
694        }
695
696        return wantTouchEvents;
697    }
698
699    private boolean closePane(View pane, int initialVelocity) {
700        if (mFirstLayout || smoothSlideTo(0.f, initialVelocity)) {
701            mPreservedOpenState = false;
702            return true;
703        }
704        return false;
705    }
706
707    private boolean openPane(View pane, int initialVelocity) {
708        if (mFirstLayout || smoothSlideTo(1.f, initialVelocity)) {
709            mPreservedOpenState = true;
710            return true;
711        }
712        return false;
713    }
714
715    /**
716     * @deprecated Renamed to {@link #openPane()} - this method is going away soon!
717     */
718    @Deprecated
719    public void smoothSlideOpen() {
720        openPane();
721    }
722
723    /**
724     * Open the sliding pane if it is currently slideable. If first layout
725     * has already completed this will animate.
726     *
727     * @return true if the pane was slideable and is now open/in the process of opening
728     */
729    public boolean openPane() {
730        return openPane(mSlideableView, 0);
731    }
732
733    /**
734     * @deprecated Renamed to {@link #closePane()} - this method is going away soon!
735     */
736    @Deprecated
737    public void smoothSlideClosed() {
738        closePane();
739    }
740
741    /**
742     * Close the sliding pane if it is currently slideable. If first layout
743     * has already completed this will animate.
744     *
745     * @return true if the pane was slideable and is now closed/in the process of closing
746     */
747    public boolean closePane() {
748        return closePane(mSlideableView, 0);
749    }
750
751    /**
752     * Check if the layout is completely open. It can be open either because the slider
753     * itself is open revealing the left pane, or if all content fits without sliding.
754     *
755     * @return true if sliding panels are completely open
756     */
757    public boolean isOpen() {
758        return !mCanSlide || mSlideOffset == 1;
759    }
760
761    /**
762     * @return true if content in this layout can be slid open and closed
763     * @deprecated Renamed to {@link #isSlideable()} - this method is going away soon!
764     */
765    @Deprecated
766    public boolean canSlide() {
767        return mCanSlide;
768    }
769
770    /**
771     * Check if the content in this layout cannot fully fit side by side and therefore
772     * the content pane can be slid back and forth.
773     *
774     * @return true if content in this layout can be slid open and closed
775     */
776    public boolean isSlideable() {
777        return mCanSlide;
778    }
779
780    private boolean performDrag(int newLeft) {
781        final LayoutParams lp = (LayoutParams) mSlideableView.getLayoutParams();
782        final int leftBound = getPaddingLeft() + lp.leftMargin;
783
784        final float oldLeft = mSlideableView.getLeft();
785
786        final int dxPane = (int) (newLeft - oldLeft);
787
788        mSlideableView.offsetLeftAndRight(dxPane);
789
790        mSlideOffset = (float) (newLeft - leftBound) / mSlideRange;
791
792        if (mParallaxBy != 0) {
793            parallaxOtherViews(mSlideOffset);
794        }
795
796        if (lp.dimWhenOffset) {
797            dimChildView(mSlideableView, mSlideOffset, mSliderFadeColor);
798        }
799        dispatchOnPanelSlide(mSlideableView);
800
801        return true;
802    }
803
804    private void dimChildView(View v, float mag, int fadeColor) {
805        final LayoutParams lp = (LayoutParams) v.getLayoutParams();
806
807        if (mag > 0 && fadeColor != 0) {
808            final int baseAlpha = (fadeColor & 0xff000000) >>> 24;
809            int imag = (int) (baseAlpha * mag);
810            int color = imag << 24 | (fadeColor & 0xffffff);
811            if (lp.dimPaint == null) {
812                lp.dimPaint = new Paint();
813            }
814            lp.dimPaint.setColorFilter(new PorterDuffColorFilter(color, PorterDuff.Mode.SRC_OVER));
815            if (ViewCompat.getLayerType(v) != ViewCompat.LAYER_TYPE_HARDWARE) {
816                ViewCompat.setLayerType(v, ViewCompat.LAYER_TYPE_HARDWARE, lp.dimPaint);
817            }
818            invalidateChildRegion(v);
819        } else if (ViewCompat.getLayerType(v) != ViewCompat.LAYER_TYPE_NONE) {
820            ViewCompat.setLayerType(v, ViewCompat.LAYER_TYPE_NONE, null);
821        }
822    }
823
824    @Override
825    protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
826        final LayoutParams lp = (LayoutParams) child.getLayoutParams();
827        boolean result;
828        final int save = canvas.save(Canvas.CLIP_SAVE_FLAG);
829
830        if (mCanSlide && !lp.slideable && mSlideableView != null) {
831            // Clip against the slider; no sense drawing what will immediately be covered.
832            canvas.getClipBounds(mTmpRect);
833            mTmpRect.right = Math.min(mTmpRect.right, mSlideableView.getLeft());
834            canvas.clipRect(mTmpRect);
835        }
836
837        if (Build.VERSION.SDK_INT >= 11) { // HC
838            result = super.drawChild(canvas, child, drawingTime);
839        } else {
840            if (lp.dimWhenOffset && mSlideOffset > 0) {
841                if (!child.isDrawingCacheEnabled()) {
842                    child.setDrawingCacheEnabled(true);
843                }
844                final Bitmap cache = child.getDrawingCache();
845                canvas.drawBitmap(cache, child.getLeft(), child.getTop(), lp.dimPaint);
846                result = false;
847            } else {
848                if (child.isDrawingCacheEnabled()) {
849                    child.setDrawingCacheEnabled(false);
850                }
851                result = super.drawChild(canvas, child, drawingTime);
852            }
853        }
854
855        canvas.restoreToCount(save);
856
857        return result;
858    }
859
860    private void invalidateChildRegion(View v) {
861        IMPL.invalidateChildRegion(this, v);
862    }
863
864    /**
865     * Smoothly animate mDraggingPane to the target X position within its range.
866     *
867     * @param slideOffset position to animate to
868     * @param velocity initial velocity in case of fling, or 0.
869     */
870    boolean smoothSlideTo(float slideOffset, int velocity) {
871        if (!mCanSlide) {
872            // Nothing to do.
873            return false;
874        }
875
876        final LayoutParams lp = (LayoutParams) mSlideableView.getLayoutParams();
877
878        final int leftBound = getPaddingLeft() + lp.leftMargin;
879        int x = (int) (leftBound + slideOffset * mSlideRange);
880
881        if (mDragHelper.smoothSlideViewTo(mSlideableView, x, mSlideableView.getTop())) {
882            ViewCompat.postInvalidateOnAnimation(this);
883            return true;
884        }
885        return false;
886    }
887
888    @Override
889    public void computeScroll() {
890        if (mDragHelper.continueSettling(true)) {
891            if (!mCanSlide) {
892                mDragHelper.abort();
893                return;
894            }
895
896            ViewCompat.postInvalidateOnAnimation(this);
897        }
898    }
899
900    /**
901     * Set a drawable to use as a shadow cast by the right pane onto the left pane
902     * during opening/closing.
903     *
904     * @param d drawable to use as a shadow
905     */
906    public void setShadowDrawable(Drawable d) {
907        mShadowDrawable = d;
908    }
909
910    /**
911     * Set a drawable to use as a shadow cast by the right pane onto the left pane
912     * during opening/closing.
913     *
914     * @param resId Resource ID of a drawable to use
915     */
916    public void setShadowResource(int resId) {
917        setShadowDrawable(getResources().getDrawable(resId));
918    }
919
920    @Override
921    public void draw(Canvas c) {
922        super.draw(c);
923
924        final View shadowView = getChildCount() > 1 ? getChildAt(1) : null;
925        if (shadowView == null || mShadowDrawable == null) {
926            // No need to draw a shadow if we don't have one.
927            return;
928        }
929
930        final int shadowWidth = mShadowDrawable.getIntrinsicWidth();
931        final int right = shadowView.getLeft();
932        final int top = shadowView.getTop();
933        final int bottom = shadowView.getBottom();
934        final int left = right - shadowWidth;
935        mShadowDrawable.setBounds(left, top, right, bottom);
936        mShadowDrawable.draw(c);
937    }
938
939    private void parallaxOtherViews(float slideOffset) {
940        final LayoutParams slideLp = (LayoutParams) mSlideableView.getLayoutParams();
941        final boolean dimViews = slideLp.dimWhenOffset && slideLp.leftMargin <= 0;
942        final int childCount = getChildCount();
943        for (int i = 0; i < childCount; i++) {
944            final View v = getChildAt(i);
945            if (v == mSlideableView) continue;
946
947            final int oldOffset = (int) ((1 - mParallaxOffset) * mParallaxBy);
948            mParallaxOffset = slideOffset;
949            final int newOffset = (int) ((1 - slideOffset) * mParallaxBy);
950            final int dx = oldOffset - newOffset;
951
952            v.offsetLeftAndRight(dx);
953
954            if (dimViews) {
955                dimChildView(v, 1 - mParallaxOffset, mCoveredFadeColor);
956            }
957        }
958    }
959
960    /**
961     * Tests scrollability within child views of v given a delta of dx.
962     *
963     * @param v View to test for horizontal scrollability
964     * @param checkV Whether the view v passed should itself be checked for scrollability (true),
965     *               or just its children (false).
966     * @param dx Delta scrolled in pixels
967     * @param x X coordinate of the active touch point
968     * @param y Y coordinate of the active touch point
969     * @return true if child views of v can be scrolled by delta of dx.
970     */
971    protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) {
972        if (v instanceof ViewGroup) {
973            final ViewGroup group = (ViewGroup) v;
974            final int scrollX = v.getScrollX();
975            final int scrollY = v.getScrollY();
976            final int count = group.getChildCount();
977            // Count backwards - let topmost views consume scroll distance first.
978            for (int i = count - 1; i >= 0; i--) {
979                // TODO: Add versioned support here for transformed views.
980                // This will not work for transformed views in Honeycomb+
981                final View child = group.getChildAt(i);
982                if (x + scrollX >= child.getLeft() && x + scrollX < child.getRight() &&
983                        y + scrollY >= child.getTop() && y + scrollY < child.getBottom() &&
984                        canScroll(child, true, dx, x + scrollX - child.getLeft(),
985                                y + scrollY - child.getTop())) {
986                    return true;
987                }
988            }
989        }
990
991        return checkV && ViewCompat.canScrollHorizontally(v, -dx);
992    }
993
994    boolean isDimmed(View child) {
995        if (child == null) {
996            return false;
997        }
998        final LayoutParams lp = (LayoutParams) child.getLayoutParams();
999        return mCanSlide && lp.dimWhenOffset && mSlideOffset > 0;
1000    }
1001
1002    @Override
1003    protected ViewGroup.LayoutParams generateDefaultLayoutParams() {
1004        return new LayoutParams();
1005    }
1006
1007    @Override
1008    protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
1009        return p instanceof MarginLayoutParams
1010                ? new LayoutParams((MarginLayoutParams) p)
1011                : new LayoutParams(p);
1012    }
1013
1014    @Override
1015    protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
1016        return p instanceof LayoutParams && super.checkLayoutParams(p);
1017    }
1018
1019    @Override
1020    public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
1021        return new LayoutParams(getContext(), attrs);
1022    }
1023
1024    @Override
1025    protected Parcelable onSaveInstanceState() {
1026        Parcelable superState = super.onSaveInstanceState();
1027
1028        SavedState ss = new SavedState(superState);
1029        ss.isOpen = isSlideable() ? isOpen() : mPreservedOpenState;
1030
1031        return ss;
1032    }
1033
1034    @Override
1035    protected void onRestoreInstanceState(Parcelable state) {
1036        SavedState ss = (SavedState) state;
1037        super.onRestoreInstanceState(ss.getSuperState());
1038
1039        if (ss.isOpen) {
1040            openPane();
1041        } else {
1042            closePane();
1043        }
1044        mPreservedOpenState = ss.isOpen;
1045    }
1046
1047    private class DragHelperCallback extends ViewDragHelper.Callback {
1048
1049        @Override
1050        public boolean tryCaptureView(View child, int pointerId) {
1051            if (mIsUnableToDrag) {
1052                return false;
1053            }
1054
1055            return ((LayoutParams) child.getLayoutParams()).slideable;
1056        }
1057
1058        @Override
1059        public void onViewDragStateChanged(int state) {
1060            if (mDragHelper.getViewDragState() == ViewDragHelper.STATE_IDLE) {
1061                if (mSlideOffset == 0) {
1062                    dispatchOnPanelClosed(mSlideableView);
1063                    mPreservedOpenState = false;
1064                } else {
1065                    dispatchOnPanelOpened(mSlideableView);
1066                    mPreservedOpenState = true;
1067                }
1068            }
1069        }
1070
1071        @Override
1072        public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {
1073            performDrag(left);
1074            invalidate();
1075        }
1076
1077        @Override
1078        public void onViewReleased(View releasedChild, float xvel, float yvel) {
1079            final LayoutParams lp = (LayoutParams) releasedChild.getLayoutParams();
1080            int left = getPaddingLeft() + lp.leftMargin;
1081            if (xvel > 0 || (xvel == 0 && mSlideOffset > 0.5f)) {
1082                left += mSlideRange;
1083            }
1084            mDragHelper.settleCapturedViewAt(left, releasedChild.getTop());
1085            invalidate();
1086        }
1087
1088        @Override
1089        public int getViewHorizontalDragRange(View child) {
1090            return mSlideRange;
1091        }
1092
1093        @Override
1094        public int clampViewPositionHorizontal(View child, int left, int dx) {
1095            final LayoutParams lp = (LayoutParams) mSlideableView.getLayoutParams();
1096            final int leftBound = getPaddingLeft() + lp.leftMargin;
1097            final int rightBound = leftBound + mSlideRange;
1098
1099            final int newLeft = Math.min(Math.max(left, leftBound), rightBound);
1100
1101            return newLeft;
1102        }
1103
1104        @Override
1105        public void onEdgeDragStarted(int edgeFlags, int pointerId) {
1106            mDragHelper.captureChildView(mSlideableView, pointerId);
1107        }
1108    }
1109
1110    public static class LayoutParams extends ViewGroup.MarginLayoutParams {
1111        private static final int[] ATTRS = new int[] {
1112            android.R.attr.layout_weight
1113        };
1114
1115        /**
1116         * The weighted proportion of how much of the leftover space
1117         * this child should consume after measurement.
1118         */
1119        public float weight = 0;
1120
1121        /**
1122         * True if this pane is the slideable pane in the layout.
1123         */
1124        boolean slideable;
1125
1126        /**
1127         * True if this view should be drawn dimmed
1128         * when it's been offset from its default position.
1129         */
1130        boolean dimWhenOffset;
1131
1132        Paint dimPaint;
1133
1134        public LayoutParams() {
1135            super(FILL_PARENT, FILL_PARENT);
1136        }
1137
1138        public LayoutParams(int width, int height) {
1139            super(width, height);
1140        }
1141
1142        public LayoutParams(android.view.ViewGroup.LayoutParams source) {
1143            super(source);
1144        }
1145
1146        public LayoutParams(MarginLayoutParams source) {
1147            super(source);
1148        }
1149
1150        public LayoutParams(LayoutParams source) {
1151            super(source);
1152            this.weight = source.weight;
1153        }
1154
1155        public LayoutParams(Context c, AttributeSet attrs) {
1156            super(c, attrs);
1157
1158            final TypedArray a = c.obtainStyledAttributes(attrs, ATTRS);
1159            this.weight = a.getFloat(0, 0);
1160            a.recycle();
1161        }
1162
1163    }
1164
1165    static class SavedState extends BaseSavedState {
1166        boolean isOpen;
1167
1168        SavedState(Parcelable superState) {
1169            super(superState);
1170        }
1171
1172        private SavedState(Parcel in) {
1173            super(in);
1174            isOpen = in.readInt() != 0;
1175        }
1176
1177        @Override
1178        public void writeToParcel(Parcel out, int flags) {
1179            super.writeToParcel(out, flags);
1180            out.writeInt(isOpen ? 1 : 0);
1181        }
1182
1183        public static final Parcelable.Creator<SavedState> CREATOR =
1184                new Parcelable.Creator<SavedState>() {
1185            public SavedState createFromParcel(Parcel in) {
1186                return new SavedState(in);
1187            }
1188
1189            public SavedState[] newArray(int size) {
1190                return new SavedState[size];
1191            }
1192        };
1193    }
1194
1195    interface SlidingPanelLayoutImpl {
1196        void invalidateChildRegion(SlidingPaneLayout parent, View child);
1197    }
1198
1199    static class SlidingPanelLayoutImplBase implements SlidingPanelLayoutImpl {
1200        public void invalidateChildRegion(SlidingPaneLayout parent, View child) {
1201            ViewCompat.postInvalidateOnAnimation(parent, child.getLeft(), child.getTop(),
1202                    child.getRight(), child.getBottom());
1203        }
1204    }
1205
1206    static class SlidingPanelLayoutImplJB extends SlidingPanelLayoutImplBase {
1207        /*
1208         * Private API hacks! Nasty! Bad!
1209         *
1210         * In Jellybean, some optimizations in the hardware UI renderer
1211         * prevent a changed Paint on a View using a hardware layer from having
1212         * the intended effect. This twiddles some internal bits on the view to force
1213         * it to recreate the display list.
1214         */
1215        private Method mGetDisplayList;
1216        private Field mRecreateDisplayList;
1217
1218        SlidingPanelLayoutImplJB() {
1219            try {
1220                mGetDisplayList = View.class.getDeclaredMethod("getDisplayList", (Class[]) null);
1221            } catch (NoSuchMethodException e) {
1222                Log.e(TAG, "Couldn't fetch getDisplayList method; dimming won't work right.", e);
1223            }
1224            try {
1225                mRecreateDisplayList = View.class.getDeclaredField("mRecreateDisplayList");
1226                mRecreateDisplayList.setAccessible(true);
1227            } catch (NoSuchFieldException e) {
1228                Log.e(TAG, "Couldn't fetch mRecreateDisplayList field; dimming will be slow.", e);
1229            }
1230        }
1231
1232        @Override
1233        public void invalidateChildRegion(SlidingPaneLayout parent, View child) {
1234            if (mGetDisplayList != null && mRecreateDisplayList != null) {
1235                try {
1236                    mRecreateDisplayList.setBoolean(child, true);
1237                    mGetDisplayList.invoke(child, (Object[]) null);
1238                } catch (Exception e) {
1239                    Log.e(TAG, "Error refreshing display list state", e);
1240                }
1241            } else {
1242                // Slow path. REALLY slow path. Let's hope we don't get here.
1243                child.invalidate();
1244                return;
1245            }
1246            super.invalidateChildRegion(parent, child);
1247        }
1248    }
1249
1250    static class SlidingPanelLayoutImplJBMR1 extends SlidingPanelLayoutImplBase {
1251        @Override
1252        public void invalidateChildRegion(SlidingPaneLayout parent, View child) {
1253            ViewCompat.setLayerPaint(child, ((LayoutParams) child.getLayoutParams()).dimPaint);
1254        }
1255    }
1256}
1257