1/*
2 * Copyright (C) 2006 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.widget;
18
19import com.android.internal.R;
20
21import java.util.ArrayDeque;
22import java.util.ArrayList;
23import java.util.Comparator;
24import java.util.HashMap;
25import java.util.SortedSet;
26import java.util.TreeSet;
27
28import android.content.Context;
29import android.content.res.Resources;
30import android.content.res.TypedArray;
31import android.graphics.Rect;
32import android.util.AttributeSet;
33import android.util.Pool;
34import android.util.Poolable;
35import android.util.PoolableManager;
36import android.util.Pools;
37import android.util.SparseArray;
38import android.view.Gravity;
39import android.view.View;
40import android.view.ViewDebug;
41import android.view.ViewGroup;
42import android.view.accessibility.AccessibilityEvent;
43import android.view.accessibility.AccessibilityNodeInfo;
44import android.widget.RemoteViews.RemoteView;
45
46import static android.util.Log.d;
47
48/**
49 * A Layout where the positions of the children can be described in relation to each other or to the
50 * parent.
51 *
52 * <p>
53 * Note that you cannot have a circular dependency between the size of the RelativeLayout and the
54 * position of its children. For example, you cannot have a RelativeLayout whose height is set to
55 * {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT WRAP_CONTENT} and a child set to
56 * {@link #ALIGN_PARENT_BOTTOM}.
57 * </p>
58 *
59 * <p>See the <a href="{@docRoot}guide/topics/ui/layout/relative.html">Relative
60 * Layout</a> guide.</p>
61 *
62 * <p>
63 * Also see {@link android.widget.RelativeLayout.LayoutParams RelativeLayout.LayoutParams} for
64 * layout attributes
65 * </p>
66 *
67 * @attr ref android.R.styleable#RelativeLayout_gravity
68 * @attr ref android.R.styleable#RelativeLayout_ignoreGravity
69 */
70@RemoteView
71public class RelativeLayout extends ViewGroup {
72    private static final String LOG_TAG = "RelativeLayout";
73
74    private static final boolean DEBUG_GRAPH = false;
75
76    public static final int TRUE = -1;
77
78    /**
79     * Rule that aligns a child's right edge with another child's left edge.
80     */
81    public static final int LEFT_OF                  = 0;
82    /**
83     * Rule that aligns a child's left edge with another child's right edge.
84     */
85    public static final int RIGHT_OF                 = 1;
86    /**
87     * Rule that aligns a child's bottom edge with another child's top edge.
88     */
89    public static final int ABOVE                    = 2;
90    /**
91     * Rule that aligns a child's top edge with another child's bottom edge.
92     */
93    public static final int BELOW                    = 3;
94
95    /**
96     * Rule that aligns a child's baseline with another child's baseline.
97     */
98    public static final int ALIGN_BASELINE           = 4;
99    /**
100     * Rule that aligns a child's left edge with another child's left edge.
101     */
102    public static final int ALIGN_LEFT               = 5;
103    /**
104     * Rule that aligns a child's top edge with another child's top edge.
105     */
106    public static final int ALIGN_TOP                = 6;
107    /**
108     * Rule that aligns a child's right edge with another child's right edge.
109     */
110    public static final int ALIGN_RIGHT              = 7;
111    /**
112     * Rule that aligns a child's bottom edge with another child's bottom edge.
113     */
114    public static final int ALIGN_BOTTOM             = 8;
115
116    /**
117     * Rule that aligns the child's left edge with its RelativeLayout
118     * parent's left edge.
119     */
120    public static final int ALIGN_PARENT_LEFT        = 9;
121    /**
122     * Rule that aligns the child's top edge with its RelativeLayout
123     * parent's top edge.
124     */
125    public static final int ALIGN_PARENT_TOP         = 10;
126    /**
127     * Rule that aligns the child's right edge with its RelativeLayout
128     * parent's right edge.
129     */
130    public static final int ALIGN_PARENT_RIGHT       = 11;
131    /**
132     * Rule that aligns the child's bottom edge with its RelativeLayout
133     * parent's bottom edge.
134     */
135    public static final int ALIGN_PARENT_BOTTOM      = 12;
136
137    /**
138     * Rule that centers the child with respect to the bounds of its
139     * RelativeLayout parent.
140     */
141    public static final int CENTER_IN_PARENT         = 13;
142    /**
143     * Rule that centers the child horizontally with respect to the
144     * bounds of its RelativeLayout parent.
145     */
146    public static final int CENTER_HORIZONTAL        = 14;
147    /**
148     * Rule that centers the child vertically with respect to the
149     * bounds of its RelativeLayout parent.
150     */
151    public static final int CENTER_VERTICAL          = 15;
152    /**
153     * Rule that aligns a child's end edge with another child's start edge.
154     */
155    public static final int START_OF                 = 16;
156    /**
157     * Rule that aligns a child's start edge with another child's end edge.
158     */
159    public static final int END_OF                   = 17;
160    /**
161     * Rule that aligns a child's start edge with another child's start edge.
162     */
163    public static final int ALIGN_START              = 18;
164    /**
165     * Rule that aligns a child's end edge with another child's end edge.
166     */
167    public static final int ALIGN_END                = 19;
168    /**
169     * Rule that aligns the child's start edge with its RelativeLayout
170     * parent's start edge.
171     */
172    public static final int ALIGN_PARENT_START       = 20;
173    /**
174     * Rule that aligns the child's end edge with its RelativeLayout
175     * parent's end edge.
176     */
177    public static final int ALIGN_PARENT_END         = 21;
178
179    private static final int VERB_COUNT              = 22;
180
181
182    private static final int[] RULES_VERTICAL = {
183            ABOVE, BELOW, ALIGN_BASELINE, ALIGN_TOP, ALIGN_BOTTOM
184    };
185
186    private static final int[] RULES_HORIZONTAL = {
187            LEFT_OF, RIGHT_OF, ALIGN_LEFT, ALIGN_RIGHT, START_OF, END_OF, ALIGN_START, ALIGN_END
188    };
189
190    private View mBaselineView = null;
191    private boolean mHasBaselineAlignedChild;
192
193    private int mGravity = Gravity.START | Gravity.TOP;
194    private final Rect mContentBounds = new Rect();
195    private final Rect mSelfBounds = new Rect();
196    private int mIgnoreGravity;
197
198    private SortedSet<View> mTopToBottomLeftToRightSet = null;
199
200    private boolean mDirtyHierarchy;
201    private View[] mSortedHorizontalChildren = new View[0];
202    private View[] mSortedVerticalChildren = new View[0];
203    private final DependencyGraph mGraph = new DependencyGraph();
204
205    public RelativeLayout(Context context) {
206        super(context);
207    }
208
209    public RelativeLayout(Context context, AttributeSet attrs) {
210        super(context, attrs);
211        initFromAttributes(context, attrs);
212    }
213
214    public RelativeLayout(Context context, AttributeSet attrs, int defStyle) {
215        super(context, attrs, defStyle);
216        initFromAttributes(context, attrs);
217    }
218
219    private void initFromAttributes(Context context, AttributeSet attrs) {
220        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.RelativeLayout);
221        mIgnoreGravity = a.getResourceId(R.styleable.RelativeLayout_ignoreGravity, View.NO_ID);
222        mGravity = a.getInt(R.styleable.RelativeLayout_gravity, mGravity);
223        a.recycle();
224    }
225
226    @Override
227    public boolean shouldDelayChildPressedState() {
228        return false;
229    }
230
231    /**
232     * Defines which View is ignored when the gravity is applied. This setting has no
233     * effect if the gravity is <code>Gravity.START | Gravity.TOP</code>.
234     *
235     * @param viewId The id of the View to be ignored by gravity, or 0 if no View
236     *        should be ignored.
237     *
238     * @see #setGravity(int)
239     *
240     * @attr ref android.R.styleable#RelativeLayout_ignoreGravity
241     */
242    @android.view.RemotableViewMethod
243    public void setIgnoreGravity(int viewId) {
244        mIgnoreGravity = viewId;
245    }
246
247    /**
248     * Describes how the child views are positioned.
249     *
250     * @return the gravity.
251     *
252     * @see #setGravity(int)
253     * @see android.view.Gravity
254     *
255     * @attr ref android.R.styleable#RelativeLayout_gravity
256     */
257    public int getGravity() {
258        return mGravity;
259    }
260
261    /**
262     * Describes how the child views are positioned. Defaults to
263     * <code>Gravity.START | Gravity.TOP</code>.
264     *
265     * <p>Note that since RelativeLayout considers the positioning of each child
266     * relative to one another to be significant, setting gravity will affect
267     * the positioning of all children as a single unit within the parent.
268     * This happens after children have been relatively positioned.</p>
269     *
270     * @param gravity See {@link android.view.Gravity}
271     *
272     * @see #setHorizontalGravity(int)
273     * @see #setVerticalGravity(int)
274     *
275     * @attr ref android.R.styleable#RelativeLayout_gravity
276     */
277    @android.view.RemotableViewMethod
278    public void setGravity(int gravity) {
279        if (mGravity != gravity) {
280            if ((gravity & Gravity.RELATIVE_HORIZONTAL_GRAVITY_MASK) == 0) {
281                gravity |= Gravity.START;
282            }
283
284            if ((gravity & Gravity.VERTICAL_GRAVITY_MASK) == 0) {
285                gravity |= Gravity.TOP;
286            }
287
288            mGravity = gravity;
289            requestLayout();
290        }
291    }
292
293    @android.view.RemotableViewMethod
294    public void setHorizontalGravity(int horizontalGravity) {
295        final int gravity = horizontalGravity & Gravity.RELATIVE_HORIZONTAL_GRAVITY_MASK;
296        if ((mGravity & Gravity.RELATIVE_HORIZONTAL_GRAVITY_MASK) != gravity) {
297            mGravity = (mGravity & ~Gravity.RELATIVE_HORIZONTAL_GRAVITY_MASK) | gravity;
298            requestLayout();
299        }
300    }
301
302    @android.view.RemotableViewMethod
303    public void setVerticalGravity(int verticalGravity) {
304        final int gravity = verticalGravity & Gravity.VERTICAL_GRAVITY_MASK;
305        if ((mGravity & Gravity.VERTICAL_GRAVITY_MASK) != gravity) {
306            mGravity = (mGravity & ~Gravity.VERTICAL_GRAVITY_MASK) | gravity;
307            requestLayout();
308        }
309    }
310
311    @Override
312    public int getBaseline() {
313        return mBaselineView != null ? mBaselineView.getBaseline() : super.getBaseline();
314    }
315
316    @Override
317    public void requestLayout() {
318        super.requestLayout();
319        mDirtyHierarchy = true;
320    }
321
322    private void sortChildren() {
323        int count = getChildCount();
324        if (mSortedVerticalChildren.length != count) mSortedVerticalChildren = new View[count];
325        if (mSortedHorizontalChildren.length != count) mSortedHorizontalChildren = new View[count];
326
327        final DependencyGraph graph = mGraph;
328        graph.clear();
329
330        for (int i = 0; i < count; i++) {
331            final View child = getChildAt(i);
332            graph.add(child);
333        }
334
335        if (DEBUG_GRAPH) {
336            d(LOG_TAG, "=== Sorted vertical children");
337            graph.log(getResources(), RULES_VERTICAL);
338            d(LOG_TAG, "=== Sorted horizontal children");
339            graph.log(getResources(), RULES_HORIZONTAL);
340        }
341
342        graph.getSortedViews(mSortedVerticalChildren, RULES_VERTICAL);
343        graph.getSortedViews(mSortedHorizontalChildren, RULES_HORIZONTAL);
344
345        if (DEBUG_GRAPH) {
346            d(LOG_TAG, "=== Ordered list of vertical children");
347            for (View view : mSortedVerticalChildren) {
348                DependencyGraph.printViewId(getResources(), view);
349            }
350            d(LOG_TAG, "=== Ordered list of horizontal children");
351            for (View view : mSortedHorizontalChildren) {
352                DependencyGraph.printViewId(getResources(), view);
353            }
354        }
355    }
356
357    // TODO: we need to find another way to implement RelativeLayout
358    // This implementation cannot handle every case
359    @Override
360    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
361        if (mDirtyHierarchy) {
362            mDirtyHierarchy = false;
363            sortChildren();
364        }
365
366        int myWidth = -1;
367        int myHeight = -1;
368
369        int width = 0;
370        int height = 0;
371
372        int widthMode = MeasureSpec.getMode(widthMeasureSpec);
373        int heightMode = MeasureSpec.getMode(heightMeasureSpec);
374        int widthSize = MeasureSpec.getSize(widthMeasureSpec);
375        int heightSize = MeasureSpec.getSize(heightMeasureSpec);
376
377        // Record our dimensions if they are known;
378        if (widthMode != MeasureSpec.UNSPECIFIED) {
379            myWidth = widthSize;
380        }
381
382        if (heightMode != MeasureSpec.UNSPECIFIED) {
383            myHeight = heightSize;
384        }
385
386        if (widthMode == MeasureSpec.EXACTLY) {
387            width = myWidth;
388        }
389
390        if (heightMode == MeasureSpec.EXACTLY) {
391            height = myHeight;
392        }
393
394        mHasBaselineAlignedChild = false;
395
396        View ignore = null;
397        int gravity = mGravity & Gravity.RELATIVE_HORIZONTAL_GRAVITY_MASK;
398        final boolean horizontalGravity = gravity != Gravity.START && gravity != 0;
399        gravity = mGravity & Gravity.VERTICAL_GRAVITY_MASK;
400        final boolean verticalGravity = gravity != Gravity.TOP && gravity != 0;
401
402        int left = Integer.MAX_VALUE;
403        int top = Integer.MAX_VALUE;
404        int right = Integer.MIN_VALUE;
405        int bottom = Integer.MIN_VALUE;
406
407        boolean offsetHorizontalAxis = false;
408        boolean offsetVerticalAxis = false;
409
410        if ((horizontalGravity || verticalGravity) && mIgnoreGravity != View.NO_ID) {
411            ignore = findViewById(mIgnoreGravity);
412        }
413
414        final boolean isWrapContentWidth = widthMode != MeasureSpec.EXACTLY;
415        final boolean isWrapContentHeight = heightMode != MeasureSpec.EXACTLY;
416
417        View[] views = mSortedHorizontalChildren;
418        int count = views.length;
419        for (int i = 0; i < count; i++) {
420            View child = views[i];
421            if (child.getVisibility() != GONE) {
422                LayoutParams params = (LayoutParams) child.getLayoutParams();
423
424                applyHorizontalSizeRules(params, myWidth);
425                measureChildHorizontal(child, params, myWidth, myHeight);
426                if (positionChildHorizontal(child, params, myWidth, isWrapContentWidth)) {
427                    offsetHorizontalAxis = true;
428                }
429            }
430        }
431
432        views = mSortedVerticalChildren;
433        count = views.length;
434
435        for (int i = 0; i < count; i++) {
436            View child = views[i];
437            if (child.getVisibility() != GONE) {
438                LayoutParams params = (LayoutParams) child.getLayoutParams();
439
440                applyVerticalSizeRules(params, myHeight);
441                measureChild(child, params, myWidth, myHeight);
442                if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) {
443                    offsetVerticalAxis = true;
444                }
445
446                if (isWrapContentWidth) {
447                    width = Math.max(width, params.mRight);
448                }
449
450                if (isWrapContentHeight) {
451                    height = Math.max(height, params.mBottom);
452                }
453
454                if (child != ignore || verticalGravity) {
455                    left = Math.min(left, params.mLeft - params.leftMargin);
456                    top = Math.min(top, params.mTop - params.topMargin);
457                }
458
459                if (child != ignore || horizontalGravity) {
460                    right = Math.max(right, params.mRight + params.rightMargin);
461                    bottom = Math.max(bottom, params.mBottom + params.bottomMargin);
462                }
463            }
464        }
465
466        if (mHasBaselineAlignedChild) {
467            for (int i = 0; i < count; i++) {
468                View child = getChildAt(i);
469                if (child.getVisibility() != GONE) {
470                    LayoutParams params = (LayoutParams) child.getLayoutParams();
471                    alignBaseline(child, params);
472
473                    if (child != ignore || verticalGravity) {
474                        left = Math.min(left, params.mLeft - params.leftMargin);
475                        top = Math.min(top, params.mTop - params.topMargin);
476                    }
477
478                    if (child != ignore || horizontalGravity) {
479                        right = Math.max(right, params.mRight + params.rightMargin);
480                        bottom = Math.max(bottom, params.mBottom + params.bottomMargin);
481                    }
482                }
483            }
484        }
485
486        final int layoutDirection = getLayoutDirection();
487
488        if (isWrapContentWidth) {
489            // Width already has left padding in it since it was calculated by looking at
490            // the right of each child view
491            width += mPaddingRight;
492
493            if (mLayoutParams.width >= 0) {
494                width = Math.max(width, mLayoutParams.width);
495            }
496
497            width = Math.max(width, getSuggestedMinimumWidth());
498            width = resolveSize(width, widthMeasureSpec);
499
500            if (offsetHorizontalAxis) {
501                for (int i = 0; i < count; i++) {
502                    View child = getChildAt(i);
503                    if (child.getVisibility() != GONE) {
504                        LayoutParams params = (LayoutParams) child.getLayoutParams();
505                        final int[] rules = params.getRules(layoutDirection);
506                        if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {
507                            centerHorizontal(child, params, width);
508                        } else if (rules[ALIGN_PARENT_RIGHT] != 0) {
509                            final int childWidth = child.getMeasuredWidth();
510                            params.mLeft = width - mPaddingRight - childWidth;
511                            params.mRight = params.mLeft + childWidth;
512                        }
513                    }
514                }
515            }
516        }
517
518        if (isWrapContentHeight) {
519            // Height already has top padding in it since it was calculated by looking at
520            // the bottom of each child view
521            height += mPaddingBottom;
522
523            if (mLayoutParams.height >= 0) {
524                height = Math.max(height, mLayoutParams.height);
525            }
526
527            height = Math.max(height, getSuggestedMinimumHeight());
528            height = resolveSize(height, heightMeasureSpec);
529
530            if (offsetVerticalAxis) {
531                for (int i = 0; i < count; i++) {
532                    View child = getChildAt(i);
533                    if (child.getVisibility() != GONE) {
534                        LayoutParams params = (LayoutParams) child.getLayoutParams();
535                        final int[] rules = params.getRules(layoutDirection);
536                        if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_VERTICAL] != 0) {
537                            centerVertical(child, params, height);
538                        } else if (rules[ALIGN_PARENT_BOTTOM] != 0) {
539                            final int childHeight = child.getMeasuredHeight();
540                            params.mTop = height - mPaddingBottom - childHeight;
541                            params.mBottom = params.mTop + childHeight;
542                        }
543                    }
544                }
545            }
546        }
547
548        if (horizontalGravity || verticalGravity) {
549            final Rect selfBounds = mSelfBounds;
550            selfBounds.set(mPaddingLeft, mPaddingTop, width - mPaddingRight,
551                    height - mPaddingBottom);
552
553            final Rect contentBounds = mContentBounds;
554            Gravity.apply(mGravity, right - left, bottom - top, selfBounds, contentBounds,
555                    layoutDirection);
556
557            final int horizontalOffset = contentBounds.left - left;
558            final int verticalOffset = contentBounds.top - top;
559            if (horizontalOffset != 0 || verticalOffset != 0) {
560                for (int i = 0; i < count; i++) {
561                    View child = getChildAt(i);
562                    if (child.getVisibility() != GONE && child != ignore) {
563                        LayoutParams params = (LayoutParams) child.getLayoutParams();
564                        if (horizontalGravity) {
565                            params.mLeft += horizontalOffset;
566                            params.mRight += horizontalOffset;
567                        }
568                        if (verticalGravity) {
569                            params.mTop += verticalOffset;
570                            params.mBottom += verticalOffset;
571                        }
572                    }
573                }
574            }
575        }
576
577        setMeasuredDimension(width, height);
578    }
579
580    private void alignBaseline(View child, LayoutParams params) {
581        final int layoutDirection = getLayoutDirection();
582        int[] rules = params.getRules(layoutDirection);
583        int anchorBaseline = getRelatedViewBaseline(rules, ALIGN_BASELINE);
584
585        if (anchorBaseline != -1) {
586            LayoutParams anchorParams = getRelatedViewParams(rules, ALIGN_BASELINE);
587            if (anchorParams != null) {
588                int offset = anchorParams.mTop + anchorBaseline;
589                int baseline = child.getBaseline();
590                if (baseline != -1) {
591                    offset -= baseline;
592                }
593                int height = params.mBottom - params.mTop;
594                params.mTop = offset;
595                params.mBottom = params.mTop + height;
596            }
597        }
598
599        if (mBaselineView == null) {
600            mBaselineView = child;
601        } else {
602            LayoutParams lp = (LayoutParams) mBaselineView.getLayoutParams();
603            if (params.mTop < lp.mTop || (params.mTop == lp.mTop && params.mLeft < lp.mLeft)) {
604                mBaselineView = child;
605            }
606        }
607    }
608
609    /**
610     * Measure a child. The child should have left, top, right and bottom information
611     * stored in its LayoutParams. If any of these values is -1 it means that the view
612     * can extend up to the corresponding edge.
613     *
614     * @param child Child to measure
615     * @param params LayoutParams associated with child
616     * @param myWidth Width of the the RelativeLayout
617     * @param myHeight Height of the RelativeLayout
618     */
619    private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) {
620        int childWidthMeasureSpec = getChildMeasureSpec(params.mLeft,
621                params.mRight, params.width,
622                params.leftMargin, params.rightMargin,
623                mPaddingLeft, mPaddingRight,
624                myWidth);
625        int childHeightMeasureSpec = getChildMeasureSpec(params.mTop,
626                params.mBottom, params.height,
627                params.topMargin, params.bottomMargin,
628                mPaddingTop, mPaddingBottom,
629                myHeight);
630        child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
631    }
632
633    private void measureChildHorizontal(View child, LayoutParams params, int myWidth, int myHeight) {
634        int childWidthMeasureSpec = getChildMeasureSpec(params.mLeft,
635                params.mRight, params.width,
636                params.leftMargin, params.rightMargin,
637                mPaddingLeft, mPaddingRight,
638                myWidth);
639        int childHeightMeasureSpec;
640        if (params.width == LayoutParams.MATCH_PARENT) {
641            childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(myHeight, MeasureSpec.EXACTLY);
642        } else {
643            childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(myHeight, MeasureSpec.AT_MOST);
644        }
645        child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
646    }
647
648    /**
649     * Get a measure spec that accounts for all of the constraints on this view.
650     * This includes size constraints imposed by the RelativeLayout as well as
651     * the View's desired dimension.
652     *
653     * @param childStart The left or top field of the child's layout params
654     * @param childEnd The right or bottom field of the child's layout params
655     * @param childSize The child's desired size (the width or height field of
656     *        the child's layout params)
657     * @param startMargin The left or top margin
658     * @param endMargin The right or bottom margin
659     * @param startPadding mPaddingLeft or mPaddingTop
660     * @param endPadding mPaddingRight or mPaddingBottom
661     * @param mySize The width or height of this view (the RelativeLayout)
662     * @return MeasureSpec for the child
663     */
664    private int getChildMeasureSpec(int childStart, int childEnd,
665            int childSize, int startMargin, int endMargin, int startPadding,
666            int endPadding, int mySize) {
667        int childSpecMode = 0;
668        int childSpecSize = 0;
669
670        // Figure out start and end bounds.
671        int tempStart = childStart;
672        int tempEnd = childEnd;
673
674        // If the view did not express a layout constraint for an edge, use
675        // view's margins and our padding
676        if (tempStart < 0) {
677            tempStart = startPadding + startMargin;
678        }
679        if (tempEnd < 0) {
680            tempEnd = mySize - endPadding - endMargin;
681        }
682
683        // Figure out maximum size available to this view
684        int maxAvailable = tempEnd - tempStart;
685
686        if (childStart >= 0 && childEnd >= 0) {
687            // Constraints fixed both edges, so child must be an exact size
688            childSpecMode = MeasureSpec.EXACTLY;
689            childSpecSize = maxAvailable;
690        } else {
691            if (childSize >= 0) {
692                // Child wanted an exact size. Give as much as possible
693                childSpecMode = MeasureSpec.EXACTLY;
694
695                if (maxAvailable >= 0) {
696                    // We have a maxmum size in this dimension.
697                    childSpecSize = Math.min(maxAvailable, childSize);
698                } else {
699                    // We can grow in this dimension.
700                    childSpecSize = childSize;
701                }
702            } else if (childSize == LayoutParams.MATCH_PARENT) {
703                // Child wanted to be as big as possible. Give all available
704                // space
705                childSpecMode = MeasureSpec.EXACTLY;
706                childSpecSize = maxAvailable;
707            } else if (childSize == LayoutParams.WRAP_CONTENT) {
708                // Child wants to wrap content. Use AT_MOST
709                // to communicate available space if we know
710                // our max size
711                if (maxAvailable >= 0) {
712                    // We have a maximum size in this dimension.
713                    childSpecMode = MeasureSpec.AT_MOST;
714                    childSpecSize = maxAvailable;
715                } else {
716                    // We can grow in this dimension. Child can be as big as it
717                    // wants
718                    childSpecMode = MeasureSpec.UNSPECIFIED;
719                    childSpecSize = 0;
720                }
721            }
722        }
723
724        return MeasureSpec.makeMeasureSpec(childSpecSize, childSpecMode);
725    }
726
727    private boolean positionChildHorizontal(View child, LayoutParams params, int myWidth,
728            boolean wrapContent) {
729
730        final int layoutDirection = getLayoutDirection();
731        int[] rules = params.getRules(layoutDirection);
732
733        if (params.mLeft < 0 && params.mRight >= 0) {
734            // Right is fixed, but left varies
735            params.mLeft = params.mRight - child.getMeasuredWidth();
736        } else if (params.mLeft >= 0 && params.mRight < 0) {
737            // Left is fixed, but right varies
738            params.mRight = params.mLeft + child.getMeasuredWidth();
739        } else if (params.mLeft < 0 && params.mRight < 0) {
740            // Both left and right vary
741            if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {
742                if (!wrapContent) {
743                    centerHorizontal(child, params, myWidth);
744                } else {
745                    params.mLeft = mPaddingLeft + params.leftMargin;
746                    params.mRight = params.mLeft + child.getMeasuredWidth();
747                }
748                return true;
749            } else {
750                // This is the default case. For RTL we start from the right and for LTR we start
751                // from the left. This will give LEFT/TOP for LTR and RIGHT/TOP for RTL.
752                if (isLayoutRtl()) {
753                    params.mRight = myWidth - mPaddingRight- params.rightMargin;
754                    params.mLeft = params.mRight - child.getMeasuredWidth();
755                } else {
756                    params.mLeft = mPaddingLeft + params.leftMargin;
757                    params.mRight = params.mLeft + child.getMeasuredWidth();
758                }
759            }
760        }
761        return rules[ALIGN_PARENT_END] != 0;
762    }
763
764    private boolean positionChildVertical(View child, LayoutParams params, int myHeight,
765            boolean wrapContent) {
766
767        int[] rules = params.getRules();
768
769        if (params.mTop < 0 && params.mBottom >= 0) {
770            // Bottom is fixed, but top varies
771            params.mTop = params.mBottom - child.getMeasuredHeight();
772        } else if (params.mTop >= 0 && params.mBottom < 0) {
773            // Top is fixed, but bottom varies
774            params.mBottom = params.mTop + child.getMeasuredHeight();
775        } else if (params.mTop < 0 && params.mBottom < 0) {
776            // Both top and bottom vary
777            if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_VERTICAL] != 0) {
778                if (!wrapContent) {
779                    centerVertical(child, params, myHeight);
780                } else {
781                    params.mTop = mPaddingTop + params.topMargin;
782                    params.mBottom = params.mTop + child.getMeasuredHeight();
783                }
784                return true;
785            } else {
786                params.mTop = mPaddingTop + params.topMargin;
787                params.mBottom = params.mTop + child.getMeasuredHeight();
788            }
789        }
790        return rules[ALIGN_PARENT_BOTTOM] != 0;
791    }
792
793    private void applyHorizontalSizeRules(LayoutParams childParams, int myWidth) {
794        final int layoutDirection = getLayoutDirection();
795        int[] rules = childParams.getRules(layoutDirection);
796        RelativeLayout.LayoutParams anchorParams;
797
798        // -1 indicated a "soft requirement" in that direction. For example:
799        // left=10, right=-1 means the view must start at 10, but can go as far as it wants to the right
800        // left =-1, right=10 means the view must end at 10, but can go as far as it wants to the left
801        // left=10, right=20 means the left and right ends are both fixed
802        childParams.mLeft = -1;
803        childParams.mRight = -1;
804
805        anchorParams = getRelatedViewParams(rules, LEFT_OF);
806        if (anchorParams != null) {
807            childParams.mRight = anchorParams.mLeft - (anchorParams.leftMargin +
808                    childParams.rightMargin);
809        } else if (childParams.alignWithParent && rules[LEFT_OF] != 0) {
810            if (myWidth >= 0) {
811                childParams.mRight = myWidth - mPaddingRight - childParams.rightMargin;
812            } else {
813                // FIXME uh oh...
814            }
815        }
816
817        anchorParams = getRelatedViewParams(rules, RIGHT_OF);
818        if (anchorParams != null) {
819            childParams.mLeft = anchorParams.mRight + (anchorParams.rightMargin +
820                    childParams.leftMargin);
821        } else if (childParams.alignWithParent && rules[RIGHT_OF] != 0) {
822            childParams.mLeft = mPaddingLeft + childParams.leftMargin;
823        }
824
825        anchorParams = getRelatedViewParams(rules, ALIGN_LEFT);
826        if (anchorParams != null) {
827            childParams.mLeft = anchorParams.mLeft + childParams.leftMargin;
828        } else if (childParams.alignWithParent && rules[ALIGN_LEFT] != 0) {
829            childParams.mLeft = mPaddingLeft + childParams.leftMargin;
830        }
831
832        anchorParams = getRelatedViewParams(rules, ALIGN_RIGHT);
833        if (anchorParams != null) {
834            childParams.mRight = anchorParams.mRight - childParams.rightMargin;
835        } else if (childParams.alignWithParent && rules[ALIGN_RIGHT] != 0) {
836            if (myWidth >= 0) {
837                childParams.mRight = myWidth - mPaddingRight - childParams.rightMargin;
838            } else {
839                // FIXME uh oh...
840            }
841        }
842
843        if (0 != rules[ALIGN_PARENT_LEFT]) {
844            childParams.mLeft = mPaddingLeft + childParams.leftMargin;
845        }
846
847        if (0 != rules[ALIGN_PARENT_RIGHT]) {
848            if (myWidth >= 0) {
849                childParams.mRight = myWidth - mPaddingRight - childParams.rightMargin;
850            } else {
851                // FIXME uh oh...
852            }
853        }
854    }
855
856    private void applyVerticalSizeRules(LayoutParams childParams, int myHeight) {
857        int[] rules = childParams.getRules();
858        RelativeLayout.LayoutParams anchorParams;
859
860        childParams.mTop = -1;
861        childParams.mBottom = -1;
862
863        anchorParams = getRelatedViewParams(rules, ABOVE);
864        if (anchorParams != null) {
865            childParams.mBottom = anchorParams.mTop - (anchorParams.topMargin +
866                    childParams.bottomMargin);
867        } else if (childParams.alignWithParent && rules[ABOVE] != 0) {
868            if (myHeight >= 0) {
869                childParams.mBottom = myHeight - mPaddingBottom - childParams.bottomMargin;
870            } else {
871                // FIXME uh oh...
872            }
873        }
874
875        anchorParams = getRelatedViewParams(rules, BELOW);
876        if (anchorParams != null) {
877            childParams.mTop = anchorParams.mBottom + (anchorParams.bottomMargin +
878                    childParams.topMargin);
879        } else if (childParams.alignWithParent && rules[BELOW] != 0) {
880            childParams.mTop = mPaddingTop + childParams.topMargin;
881        }
882
883        anchorParams = getRelatedViewParams(rules, ALIGN_TOP);
884        if (anchorParams != null) {
885            childParams.mTop = anchorParams.mTop + childParams.topMargin;
886        } else if (childParams.alignWithParent && rules[ALIGN_TOP] != 0) {
887            childParams.mTop = mPaddingTop + childParams.topMargin;
888        }
889
890        anchorParams = getRelatedViewParams(rules, ALIGN_BOTTOM);
891        if (anchorParams != null) {
892            childParams.mBottom = anchorParams.mBottom - childParams.bottomMargin;
893        } else if (childParams.alignWithParent && rules[ALIGN_BOTTOM] != 0) {
894            if (myHeight >= 0) {
895                childParams.mBottom = myHeight - mPaddingBottom - childParams.bottomMargin;
896            } else {
897                // FIXME uh oh...
898            }
899        }
900
901        if (0 != rules[ALIGN_PARENT_TOP]) {
902            childParams.mTop = mPaddingTop + childParams.topMargin;
903        }
904
905        if (0 != rules[ALIGN_PARENT_BOTTOM]) {
906            if (myHeight >= 0) {
907                childParams.mBottom = myHeight - mPaddingBottom - childParams.bottomMargin;
908            } else {
909                // FIXME uh oh...
910            }
911        }
912
913        if (rules[ALIGN_BASELINE] != 0) {
914            mHasBaselineAlignedChild = true;
915        }
916    }
917
918    private View getRelatedView(int[] rules, int relation) {
919        int id = rules[relation];
920        if (id != 0) {
921            DependencyGraph.Node node = mGraph.mKeyNodes.get(id);
922            if (node == null) return null;
923            View v = node.view;
924
925            // Find the first non-GONE view up the chain
926            while (v.getVisibility() == View.GONE) {
927                rules = ((LayoutParams) v.getLayoutParams()).getRules();
928                node = mGraph.mKeyNodes.get((rules[relation]));
929                if (node == null) return null;
930                v = node.view;
931            }
932
933            return v;
934        }
935
936        return null;
937    }
938
939    private LayoutParams getRelatedViewParams(int[] rules, int relation) {
940        View v = getRelatedView(rules, relation);
941        if (v != null) {
942            ViewGroup.LayoutParams params = v.getLayoutParams();
943            if (params instanceof LayoutParams) {
944                return (LayoutParams) v.getLayoutParams();
945            }
946        }
947        return null;
948    }
949
950    private int getRelatedViewBaseline(int[] rules, int relation) {
951        View v = getRelatedView(rules, relation);
952        if (v != null) {
953            return v.getBaseline();
954        }
955        return -1;
956    }
957
958    private void centerHorizontal(View child, LayoutParams params, int myWidth) {
959        int childWidth = child.getMeasuredWidth();
960        int left = (myWidth - childWidth) / 2;
961
962        params.mLeft = left;
963        params.mRight = left + childWidth;
964    }
965
966    private void centerVertical(View child, LayoutParams params, int myHeight) {
967        int childHeight = child.getMeasuredHeight();
968        int top = (myHeight - childHeight) / 2;
969
970        params.mTop = top;
971        params.mBottom = top + childHeight;
972    }
973
974    @Override
975    protected void onLayout(boolean changed, int l, int t, int r, int b) {
976        //  The layout has actually already been performed and the positions
977        //  cached.  Apply the cached values to the children.
978        int count = getChildCount();
979
980        for (int i = 0; i < count; i++) {
981            View child = getChildAt(i);
982            if (child.getVisibility() != GONE) {
983                RelativeLayout.LayoutParams st =
984                        (RelativeLayout.LayoutParams) child.getLayoutParams();
985                child.layout(st.mLeft, st.mTop, st.mRight, st.mBottom);
986            }
987        }
988    }
989
990    @Override
991    public LayoutParams generateLayoutParams(AttributeSet attrs) {
992        return new RelativeLayout.LayoutParams(getContext(), attrs);
993    }
994
995    /**
996     * Returns a set of layout parameters with a width of
997     * {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT},
998     * a height of {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT} and no spanning.
999     */
1000    @Override
1001    protected ViewGroup.LayoutParams generateDefaultLayoutParams() {
1002        return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
1003    }
1004
1005    // Override to allow type-checking of LayoutParams.
1006    @Override
1007    protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
1008        return p instanceof RelativeLayout.LayoutParams;
1009    }
1010
1011    @Override
1012    protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
1013        return new LayoutParams(p);
1014    }
1015
1016    @Override
1017    public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
1018        if (mTopToBottomLeftToRightSet == null) {
1019            mTopToBottomLeftToRightSet = new TreeSet<View>(new TopToBottomLeftToRightComparator());
1020        }
1021
1022        // sort children top-to-bottom and left-to-right
1023        for (int i = 0, count = getChildCount(); i < count; i++) {
1024            mTopToBottomLeftToRightSet.add(getChildAt(i));
1025        }
1026
1027        for (View view : mTopToBottomLeftToRightSet) {
1028            if (view.getVisibility() == View.VISIBLE
1029                    && view.dispatchPopulateAccessibilityEvent(event)) {
1030                mTopToBottomLeftToRightSet.clear();
1031                return true;
1032            }
1033        }
1034
1035        mTopToBottomLeftToRightSet.clear();
1036        return false;
1037    }
1038
1039    @Override
1040    public void onInitializeAccessibilityEvent(AccessibilityEvent event) {
1041        super.onInitializeAccessibilityEvent(event);
1042        event.setClassName(RelativeLayout.class.getName());
1043    }
1044
1045    @Override
1046    public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
1047        super.onInitializeAccessibilityNodeInfo(info);
1048        info.setClassName(RelativeLayout.class.getName());
1049    }
1050
1051    /**
1052     * Compares two views in left-to-right and top-to-bottom fashion.
1053     */
1054     private class TopToBottomLeftToRightComparator implements Comparator<View> {
1055        public int compare(View first, View second) {
1056            // top - bottom
1057            int topDifference = first.getTop() - second.getTop();
1058            if (topDifference != 0) {
1059                return topDifference;
1060            }
1061            // left - right
1062            int leftDifference = first.getLeft() - second.getLeft();
1063            if (leftDifference != 0) {
1064                return leftDifference;
1065            }
1066            // break tie by height
1067            int heightDiference = first.getHeight() - second.getHeight();
1068            if (heightDiference != 0) {
1069                return heightDiference;
1070            }
1071            // break tie by width
1072            int widthDiference = first.getWidth() - second.getWidth();
1073            if (widthDiference != 0) {
1074                return widthDiference;
1075            }
1076            return 0;
1077        }
1078    }
1079
1080    /**
1081     * Per-child layout information associated with RelativeLayout.
1082     *
1083     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignWithParentIfMissing
1084     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_toLeftOf
1085     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_toRightOf
1086     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_above
1087     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_below
1088     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignBaseline
1089     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignLeft
1090     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignTop
1091     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignRight
1092     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignBottom
1093     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignParentLeft
1094     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignParentTop
1095     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignParentRight
1096     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignParentBottom
1097     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_centerInParent
1098     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_centerHorizontal
1099     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_centerVertical
1100     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_toStartOf
1101     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_toEndOf
1102     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignStart
1103     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignEnd
1104     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignParentStart
1105     * @attr ref android.R.styleable#RelativeLayout_Layout_layout_alignParentEnd
1106     */
1107    public static class LayoutParams extends ViewGroup.MarginLayoutParams {
1108        @ViewDebug.ExportedProperty(category = "layout", resolveId = true, indexMapping = {
1109            @ViewDebug.IntToString(from = ABOVE,               to = "above"),
1110            @ViewDebug.IntToString(from = ALIGN_BASELINE,      to = "alignBaseline"),
1111            @ViewDebug.IntToString(from = ALIGN_BOTTOM,        to = "alignBottom"),
1112            @ViewDebug.IntToString(from = ALIGN_LEFT,          to = "alignLeft"),
1113            @ViewDebug.IntToString(from = ALIGN_PARENT_BOTTOM, to = "alignParentBottom"),
1114            @ViewDebug.IntToString(from = ALIGN_PARENT_LEFT,   to = "alignParentLeft"),
1115            @ViewDebug.IntToString(from = ALIGN_PARENT_RIGHT,  to = "alignParentRight"),
1116            @ViewDebug.IntToString(from = ALIGN_PARENT_TOP,    to = "alignParentTop"),
1117            @ViewDebug.IntToString(from = ALIGN_RIGHT,         to = "alignRight"),
1118            @ViewDebug.IntToString(from = ALIGN_TOP,           to = "alignTop"),
1119            @ViewDebug.IntToString(from = BELOW,               to = "below"),
1120            @ViewDebug.IntToString(from = CENTER_HORIZONTAL,   to = "centerHorizontal"),
1121            @ViewDebug.IntToString(from = CENTER_IN_PARENT,    to = "center"),
1122            @ViewDebug.IntToString(from = CENTER_VERTICAL,     to = "centerVertical"),
1123            @ViewDebug.IntToString(from = LEFT_OF,             to = "leftOf"),
1124            @ViewDebug.IntToString(from = RIGHT_OF,            to = "rightOf"),
1125            @ViewDebug.IntToString(from = ALIGN_START,         to = "alignStart"),
1126            @ViewDebug.IntToString(from = ALIGN_END,           to = "alignEnd"),
1127            @ViewDebug.IntToString(from = ALIGN_PARENT_START,  to = "alignParentStart"),
1128            @ViewDebug.IntToString(from = ALIGN_PARENT_END,    to = "alignParentEnd"),
1129            @ViewDebug.IntToString(from = START_OF,            to = "startOf"),
1130            @ViewDebug.IntToString(from = END_OF,              to = "endOf")
1131        }, mapping = {
1132            @ViewDebug.IntToString(from = TRUE, to = "true"),
1133            @ViewDebug.IntToString(from = 0,    to = "false/NO_ID")
1134        })
1135
1136        private int[] mRules = new int[VERB_COUNT];
1137        private int[] mInitialRules = new int[VERB_COUNT];
1138
1139        private int mLeft, mTop, mRight, mBottom;
1140
1141        private int mStart = DEFAULT_RELATIVE;
1142        private int mEnd = DEFAULT_RELATIVE;
1143
1144        private boolean mRulesChanged = false;
1145
1146        /**
1147         * When true, uses the parent as the anchor if the anchor doesn't exist or if
1148         * the anchor's visibility is GONE.
1149         */
1150        @ViewDebug.ExportedProperty(category = "layout")
1151        public boolean alignWithParent;
1152
1153        public LayoutParams(Context c, AttributeSet attrs) {
1154            super(c, attrs);
1155
1156            TypedArray a = c.obtainStyledAttributes(attrs,
1157                    com.android.internal.R.styleable.RelativeLayout_Layout);
1158
1159            final int[] rules = mRules;
1160            final int[] initialRules = mInitialRules;
1161
1162            final int N = a.getIndexCount();
1163            for (int i = 0; i < N; i++) {
1164                int attr = a.getIndex(i);
1165                switch (attr) {
1166                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignWithParentIfMissing:
1167                        alignWithParent = a.getBoolean(attr, false);
1168                        break;
1169                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_toLeftOf:
1170                        rules[LEFT_OF] = a.getResourceId(attr, 0);
1171                        break;
1172                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_toRightOf:
1173                        rules[RIGHT_OF] = a.getResourceId(attr, 0);
1174                        break;
1175                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_above:
1176                        rules[ABOVE] = a.getResourceId(attr, 0);
1177                        break;
1178                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_below:
1179                        rules[BELOW] = a.getResourceId(attr, 0);
1180                        break;
1181                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignBaseline:
1182                        rules[ALIGN_BASELINE] = a.getResourceId(attr, 0);
1183                        break;
1184                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignLeft:
1185                        rules[ALIGN_LEFT] = a.getResourceId(attr, 0);
1186                        break;
1187                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignTop:
1188                        rules[ALIGN_TOP] = a.getResourceId(attr, 0);
1189                        break;
1190                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignRight:
1191                        rules[ALIGN_RIGHT] = a.getResourceId(attr, 0);
1192                        break;
1193                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignBottom:
1194                        rules[ALIGN_BOTTOM] = a.getResourceId(attr, 0);
1195                        break;
1196                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignParentLeft:
1197                        rules[ALIGN_PARENT_LEFT] = a.getBoolean(attr, false) ? TRUE : 0;
1198                        break;
1199                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignParentTop:
1200                        rules[ALIGN_PARENT_TOP] = a.getBoolean(attr, false) ? TRUE : 0;
1201                        break;
1202                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignParentRight:
1203                        rules[ALIGN_PARENT_RIGHT] = a.getBoolean(attr, false) ? TRUE : 0;
1204                        break;
1205                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignParentBottom:
1206                        rules[ALIGN_PARENT_BOTTOM] = a.getBoolean(attr, false) ? TRUE : 0;
1207                        break;
1208                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_centerInParent:
1209                        rules[CENTER_IN_PARENT] = a.getBoolean(attr, false) ? TRUE : 0;
1210                        break;
1211                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_centerHorizontal:
1212                        rules[CENTER_HORIZONTAL] = a.getBoolean(attr, false) ? TRUE : 0;
1213                        break;
1214                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_centerVertical:
1215                        rules[CENTER_VERTICAL] = a.getBoolean(attr, false) ? TRUE : 0;
1216                       break;
1217                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_toStartOf:
1218                        rules[START_OF] = a.getResourceId(attr, 0);
1219                        break;
1220                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_toEndOf:
1221                        rules[END_OF] = a.getResourceId(attr, 0);
1222                        break;
1223                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignStart:
1224                        rules[ALIGN_START] = a.getResourceId(attr, 0);
1225                        break;
1226                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignEnd:
1227                        rules[ALIGN_END] = a.getResourceId(attr, 0);
1228                        break;
1229                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignParentStart:
1230                        rules[ALIGN_PARENT_START] = a.getBoolean(attr, false) ? TRUE : 0;
1231                        break;
1232                    case com.android.internal.R.styleable.RelativeLayout_Layout_layout_alignParentEnd:
1233                        rules[ALIGN_PARENT_END] = a.getBoolean(attr, false) ? TRUE : 0;
1234                        break;
1235                }
1236            }
1237
1238            for (int n = LEFT_OF; n < VERB_COUNT; n++) {
1239                initialRules[n] = rules[n];
1240            }
1241
1242            a.recycle();
1243        }
1244
1245        public LayoutParams(int w, int h) {
1246            super(w, h);
1247        }
1248
1249        /**
1250         * {@inheritDoc}
1251         */
1252        public LayoutParams(ViewGroup.LayoutParams source) {
1253            super(source);
1254        }
1255
1256        /**
1257         * {@inheritDoc}
1258         */
1259        public LayoutParams(ViewGroup.MarginLayoutParams source) {
1260            super(source);
1261        }
1262
1263        @Override
1264        public String debug(String output) {
1265            return output + "ViewGroup.LayoutParams={ width=" + sizeToString(width) +
1266                    ", height=" + sizeToString(height) + " }";
1267        }
1268
1269        /**
1270         * Adds a layout rule to be interpreted by the RelativeLayout. This
1271         * method should only be used for constraints that don't refer to another sibling
1272         * (e.g., CENTER_IN_PARENT) or take a boolean value ({@link RelativeLayout#TRUE}
1273         * for true or 0 for false). To specify a verb that takes a subject, use
1274         * {@link #addRule(int, int)} instead.
1275         *
1276         * @param verb One of the verbs defined by
1277         *        {@link android.widget.RelativeLayout RelativeLayout}, such as
1278         *        ALIGN_WITH_PARENT_LEFT.
1279         * @see #addRule(int, int)
1280         */
1281        public void addRule(int verb) {
1282            mRules[verb] = TRUE;
1283            mInitialRules[verb] = TRUE;
1284            mRulesChanged = true;
1285        }
1286
1287        /**
1288         * Adds a layout rule to be interpreted by the RelativeLayout. Use this for
1289         * verbs that take a target, such as a sibling (ALIGN_RIGHT) or a boolean
1290         * value (VISIBLE).
1291         *
1292         * @param verb One of the verbs defined by
1293         *        {@link android.widget.RelativeLayout RelativeLayout}, such as
1294         *         ALIGN_WITH_PARENT_LEFT.
1295         * @param anchor The id of another view to use as an anchor,
1296         *        or a boolean value(represented as {@link RelativeLayout#TRUE})
1297         *        for true or 0 for false).  For verbs that don't refer to another sibling
1298         *        (for example, ALIGN_WITH_PARENT_BOTTOM) just use -1.
1299         * @see #addRule(int)
1300         */
1301        public void addRule(int verb, int anchor) {
1302            mRules[verb] = anchor;
1303            mInitialRules[verb] = anchor;
1304            mRulesChanged = true;
1305        }
1306
1307        /**
1308         * Removes a layout rule to be interpreted by the RelativeLayout.
1309         *
1310         * @param verb One of the verbs defined by
1311         *        {@link android.widget.RelativeLayout RelativeLayout}, such as
1312         *         ALIGN_WITH_PARENT_LEFT.
1313         * @see #addRule(int)
1314         * @see #addRule(int, int)
1315         */
1316        public void removeRule(int verb) {
1317            mRules[verb] = 0;
1318            mInitialRules[verb] = 0;
1319            mRulesChanged = true;
1320        }
1321
1322        private boolean hasRelativeRules() {
1323            return (mInitialRules[START_OF] != 0 || mInitialRules[END_OF] != 0 ||
1324                    mInitialRules[ALIGN_START] != 0 || mInitialRules[ALIGN_END] != 0 ||
1325                    mInitialRules[ALIGN_PARENT_START] != 0 || mInitialRules[ALIGN_PARENT_END] != 0);
1326        }
1327
1328        private void resolveRules(int layoutDirection) {
1329            final boolean isLayoutRtl = (layoutDirection == View.LAYOUT_DIRECTION_RTL);
1330            // Reset to initial state
1331            for (int n = LEFT_OF; n < VERB_COUNT; n++) {
1332                mRules[n] = mInitialRules[n];
1333            }
1334            // Apply rules depending on direction
1335            if (mRules[ALIGN_START] != 0) {
1336                mRules[isLayoutRtl ? ALIGN_RIGHT : ALIGN_LEFT] = mRules[ALIGN_START];
1337            }
1338            if (mRules[ALIGN_END] != 0) {
1339                mRules[isLayoutRtl ? ALIGN_LEFT : ALIGN_RIGHT] = mRules[ALIGN_END];
1340            }
1341            if (mRules[START_OF] != 0) {
1342                mRules[isLayoutRtl ? RIGHT_OF : LEFT_OF] = mRules[START_OF];
1343            }
1344            if (mRules[END_OF] != 0) {
1345                mRules[isLayoutRtl ? LEFT_OF : RIGHT_OF] = mRules[END_OF];
1346            }
1347            if (mRules[ALIGN_PARENT_START] != 0) {
1348                mRules[isLayoutRtl ? ALIGN_PARENT_RIGHT : ALIGN_PARENT_LEFT] = mRules[ALIGN_PARENT_START];
1349            }
1350            if (mRules[ALIGN_PARENT_END] != 0) {
1351                mRules[isLayoutRtl ? ALIGN_PARENT_LEFT : ALIGN_PARENT_RIGHT] = mRules[ALIGN_PARENT_END];
1352            }
1353            mRulesChanged = false;
1354        }
1355
1356        /**
1357         * Retrieves a complete list of all supported rules, where the index is the rule
1358         * verb, and the element value is the value specified, or "false" if it was never
1359         * set. If there are relative rules defined (*_START / *_END), they will be resolved
1360         * depending on the layout direction.
1361         *
1362         * @param layoutDirection the direction of the layout.
1363         *                        Should be either {@link View#LAYOUT_DIRECTION_LTR}
1364         *                        or {@link View#LAYOUT_DIRECTION_RTL}
1365         * @return the supported rules
1366         * @see #addRule(int, int)
1367         *
1368         * @hide
1369         */
1370        public int[] getRules(int layoutDirection) {
1371            if (hasRelativeRules() &&
1372                    (mRulesChanged || layoutDirection != getLayoutDirection())) {
1373                resolveRules(layoutDirection);
1374                if (layoutDirection != getLayoutDirection()) {
1375                    setLayoutDirection(layoutDirection);
1376                }
1377            }
1378            return mRules;
1379        }
1380
1381        /**
1382         * Retrieves a complete list of all supported rules, where the index is the rule
1383         * verb, and the element value is the value specified, or "false" if it was never
1384         * set. There will be no resolution of relative rules done.
1385         *
1386         * @return the supported rules
1387         * @see #addRule(int, int)
1388         */
1389        public int[] getRules() {
1390            return mRules;
1391        }
1392
1393        @Override
1394        public void resolveLayoutDirection(int layoutDirection) {
1395            final boolean isLayoutRtl = isLayoutRtl();
1396            if (isLayoutRtl) {
1397                if (mStart != DEFAULT_RELATIVE) mRight = mStart;
1398                if (mEnd != DEFAULT_RELATIVE) mLeft = mEnd;
1399            } else {
1400                if (mStart != DEFAULT_RELATIVE) mLeft = mStart;
1401                if (mEnd != DEFAULT_RELATIVE) mRight = mEnd;
1402            }
1403
1404            if (hasRelativeRules() && layoutDirection != getLayoutDirection()) {
1405                resolveRules(layoutDirection);
1406            }
1407            // This will set the layout direction
1408            super.resolveLayoutDirection(layoutDirection);
1409        }
1410    }
1411
1412    private static class DependencyGraph {
1413        /**
1414         * List of all views in the graph.
1415         */
1416        private ArrayList<Node> mNodes = new ArrayList<Node>();
1417
1418        /**
1419         * List of nodes in the graph. Each node is identified by its
1420         * view id (see View#getId()).
1421         */
1422        private SparseArray<Node> mKeyNodes = new SparseArray<Node>();
1423
1424        /**
1425         * Temporary data structure used to build the list of roots
1426         * for this graph.
1427         */
1428        private ArrayDeque<Node> mRoots = new ArrayDeque<Node>();
1429
1430        /**
1431         * Clears the graph.
1432         */
1433        void clear() {
1434            final ArrayList<Node> nodes = mNodes;
1435            final int count = nodes.size();
1436
1437            for (int i = 0; i < count; i++) {
1438                nodes.get(i).release();
1439            }
1440            nodes.clear();
1441
1442            mKeyNodes.clear();
1443            mRoots.clear();
1444        }
1445
1446        /**
1447         * Adds a view to the graph.
1448         *
1449         * @param view The view to be added as a node to the graph.
1450         */
1451        void add(View view) {
1452            final int id = view.getId();
1453            final Node node = Node.acquire(view);
1454
1455            if (id != View.NO_ID) {
1456                mKeyNodes.put(id, node);
1457            }
1458
1459            mNodes.add(node);
1460        }
1461
1462        /**
1463         * Builds a sorted list of views. The sorting order depends on the dependencies
1464         * between the view. For instance, if view C needs view A to be processed first
1465         * and view A needs view B to be processed first, the dependency graph
1466         * is: B -> A -> C. The sorted array will contain views B, A and C in this order.
1467         *
1468         * @param sorted The sorted list of views. The length of this array must
1469         *        be equal to getChildCount().
1470         * @param rules The list of rules to take into account.
1471         */
1472        void getSortedViews(View[] sorted, int... rules) {
1473            final ArrayDeque<Node> roots = findRoots(rules);
1474            int index = 0;
1475
1476            Node node;
1477            while ((node = roots.pollLast()) != null) {
1478                final View view = node.view;
1479                final int key = view.getId();
1480
1481                sorted[index++] = view;
1482
1483                final HashMap<Node, DependencyGraph> dependents = node.dependents;
1484                for (Node dependent : dependents.keySet()) {
1485                    final SparseArray<Node> dependencies = dependent.dependencies;
1486
1487                    dependencies.remove(key);
1488                    if (dependencies.size() == 0) {
1489                        roots.add(dependent);
1490                    }
1491                }
1492            }
1493
1494            if (index < sorted.length) {
1495                throw new IllegalStateException("Circular dependencies cannot exist"
1496                        + " in RelativeLayout");
1497            }
1498        }
1499
1500        /**
1501         * Finds the roots of the graph. A root is a node with no dependency and
1502         * with [0..n] dependents.
1503         *
1504         * @param rulesFilter The list of rules to consider when building the
1505         *        dependencies
1506         *
1507         * @return A list of node, each being a root of the graph
1508         */
1509        private ArrayDeque<Node> findRoots(int[] rulesFilter) {
1510            final SparseArray<Node> keyNodes = mKeyNodes;
1511            final ArrayList<Node> nodes = mNodes;
1512            final int count = nodes.size();
1513
1514            // Find roots can be invoked several times, so make sure to clear
1515            // all dependents and dependencies before running the algorithm
1516            for (int i = 0; i < count; i++) {
1517                final Node node = nodes.get(i);
1518                node.dependents.clear();
1519                node.dependencies.clear();
1520            }
1521
1522            // Builds up the dependents and dependencies for each node of the graph
1523            for (int i = 0; i < count; i++) {
1524                final Node node = nodes.get(i);
1525
1526                final LayoutParams layoutParams = (LayoutParams) node.view.getLayoutParams();
1527                final int[] rules = layoutParams.mRules;
1528                final int rulesCount = rulesFilter.length;
1529
1530                // Look only the the rules passed in parameter, this way we build only the
1531                // dependencies for a specific set of rules
1532                for (int j = 0; j < rulesCount; j++) {
1533                    final int rule = rules[rulesFilter[j]];
1534                    if (rule > 0) {
1535                        // The node this node depends on
1536                        final Node dependency = keyNodes.get(rule);
1537                        // Skip unknowns and self dependencies
1538                        if (dependency == null || dependency == node) {
1539                            continue;
1540                        }
1541                        // Add the current node as a dependent
1542                        dependency.dependents.put(node, this);
1543                        // Add a dependency to the current node
1544                        node.dependencies.put(rule, dependency);
1545                    }
1546                }
1547            }
1548
1549            final ArrayDeque<Node> roots = mRoots;
1550            roots.clear();
1551
1552            // Finds all the roots in the graph: all nodes with no dependencies
1553            for (int i = 0; i < count; i++) {
1554                final Node node = nodes.get(i);
1555                if (node.dependencies.size() == 0) roots.addLast(node);
1556            }
1557
1558            return roots;
1559        }
1560
1561        /**
1562         * Prints the dependency graph for the specified rules.
1563         *
1564         * @param resources The context's resources to print the ids.
1565         * @param rules The list of rules to take into account.
1566         */
1567        void log(Resources resources, int... rules) {
1568            final ArrayDeque<Node> roots = findRoots(rules);
1569            for (Node node : roots) {
1570                printNode(resources, node);
1571            }
1572        }
1573
1574        static void printViewId(Resources resources, View view) {
1575            if (view.getId() != View.NO_ID) {
1576                d(LOG_TAG, resources.getResourceEntryName(view.getId()));
1577            } else {
1578                d(LOG_TAG, "NO_ID");
1579            }
1580        }
1581
1582        private static void appendViewId(Resources resources, Node node, StringBuilder buffer) {
1583            if (node.view.getId() != View.NO_ID) {
1584                buffer.append(resources.getResourceEntryName(node.view.getId()));
1585            } else {
1586                buffer.append("NO_ID");
1587            }
1588        }
1589
1590        private static void printNode(Resources resources, Node node) {
1591            if (node.dependents.size() == 0) {
1592                printViewId(resources, node.view);
1593            } else {
1594                for (Node dependent : node.dependents.keySet()) {
1595                    StringBuilder buffer = new StringBuilder();
1596                    appendViewId(resources, node, buffer);
1597                    printdependents(resources, dependent, buffer);
1598                }
1599            }
1600        }
1601
1602        private static void printdependents(Resources resources, Node node, StringBuilder buffer) {
1603            buffer.append(" -> ");
1604            appendViewId(resources, node, buffer);
1605
1606            if (node.dependents.size() == 0) {
1607                d(LOG_TAG, buffer.toString());
1608            } else {
1609                for (Node dependent : node.dependents.keySet()) {
1610                    StringBuilder subBuffer = new StringBuilder(buffer);
1611                    printdependents(resources, dependent, subBuffer);
1612                }
1613            }
1614        }
1615
1616        /**
1617         * A node in the dependency graph. A node is a view, its list of dependencies
1618         * and its list of dependents.
1619         *
1620         * A node with no dependent is considered a root of the graph.
1621         */
1622        static class Node implements Poolable<Node> {
1623            /**
1624             * The view representing this node in the layout.
1625             */
1626            View view;
1627
1628            /**
1629             * The list of dependents for this node; a dependent is a node
1630             * that needs this node to be processed first.
1631             */
1632            final HashMap<Node, DependencyGraph> dependents = new HashMap<Node, DependencyGraph>();
1633
1634            /**
1635             * The list of dependencies for this node.
1636             */
1637            final SparseArray<Node> dependencies = new SparseArray<Node>();
1638
1639            /*
1640             * START POOL IMPLEMENTATION
1641             */
1642            // The pool is static, so all nodes instances are shared across
1643            // activities, that's why we give it a rather high limit
1644            private static final int POOL_LIMIT = 100;
1645            private static final Pool<Node> sPool = Pools.synchronizedPool(
1646                    Pools.finitePool(new PoolableManager<Node>() {
1647                        public Node newInstance() {
1648                            return new Node();
1649                        }
1650
1651                        public void onAcquired(Node element) {
1652                        }
1653
1654                        public void onReleased(Node element) {
1655                        }
1656                    }, POOL_LIMIT)
1657            );
1658
1659            private Node mNext;
1660            private boolean mIsPooled;
1661
1662            public void setNextPoolable(Node element) {
1663                mNext = element;
1664            }
1665
1666            public Node getNextPoolable() {
1667                return mNext;
1668            }
1669
1670            public boolean isPooled() {
1671                return mIsPooled;
1672            }
1673
1674            public void setPooled(boolean isPooled) {
1675                mIsPooled = isPooled;
1676            }
1677
1678            static Node acquire(View view) {
1679                final Node node = sPool.acquire();
1680                node.view = view;
1681
1682                return node;
1683            }
1684
1685            void release() {
1686                view = null;
1687                dependents.clear();
1688                dependencies.clear();
1689
1690                sPool.release(this);
1691            }
1692            /*
1693             * END POOL IMPLEMENTATION
1694             */
1695        }
1696    }
1697}
1698