View 1

作者: GuoYiheng | 来源:发表于2016-11-24 00:17 被阅读0次

    View与ViewGroup

    View是按钮(button),文本框(text field)等部件(widget)的类的基类,这些类都是用于和用户交互的UI组件.
    ViewGroup是View的子类,它是框架布局(FrameLayout), 相对布局(RelativeLayout)等用于布局的类的基类,这些类是不可见的容器,用于放置其他的View或者ViewGroup,并且定义他们与布局相关的属性.
    一个窗口里所有视图按照单一树状架构组合在一起,我们可以通过Java代码来添加视图,或者通过一个或多个XML布局文件来详细描述视图树.


    ID

    视图的ID是一个与之关联的整数,通常定义在XML布局文件里,用于在视图树里找到该视图[1].比如定义一个Button:

    <Button
         android:id="@+id/my_button"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="@string/my_button_text"/>
    

    在Activity的onCreate方法里通过id找到该按钮:

    Button myButton = (Button) findViewById(R.id.my_button);
    

    Position

    View是一个矩形空间,位置(location)lefttop坐标( coordinate)确定,尺寸(dimension)widthheight确定.getLeft(),getTop()返回的都是相对于parennnt的坐标值:X,Y;单位是像素(pixel).


    Size, padding and margins

    Size:

    view的width和height有两种表述:
    1.measured widthmeasured height:向parent请求的大小,可通过getMeasuredWidth()getMeasuredHeight()获得.
    2.drawing widthdrawing height:在屏幕上实际大小,通过getWidth()getHeight()获得.

    Padding:

    padding单位是像素,控制的是view的内容(content)view内的位置. 通过setPadding(int, int, int, int) 或者 * setPaddingRelative(int, int, int, int)* 设置,通过 calling getPaddingLeft(), getPaddingTop(), getPaddingRight(), getPaddingBottom(), getPaddingStart(), getPaddingEnd()获取.

    Margins:

    view不支持设置margin,viewgroup支持设置margin.


    Layout

    布局包括两个传递过程(pass process):测量传递(measure pass)和布局传递(layout pass).

    测量传递

    测量传递是对视图树的遍历,通过measure(int,int)方法实现.

     /**
         * <p>
         * This is called to find out how big a view should be. The parent
         * supplies constraint information in the width and height parameters.
         * </p>
         *
         * <p>
         * The actual measurement work of a view is performed in
         * {@link #onMeasure(int, int)}, called by this method. Therefore, only
         * {@link #onMeasure(int, int)} can and must be overridden by subclasses.
         * </p>
         *
         *
         * @param widthMeasureSpec Horizontal space requirements as imposed by the
         *        parent
         * @param heightMeasureSpec Vertical space requirements as imposed by the
         *        parent
         *
         * @see #onMeasure(int, int)
         */
        public final void measure(int widthMeasureSpec, int heightMeasureSpec) {
            boolean optical = isLayoutModeOptical(this);
            if (optical != isLayoutModeOptical(mParent)) {
                Insets insets = getOpticalInsets();
                int oWidth  = insets.left + insets.right;
                int oHeight = insets.top  + insets.bottom;
                widthMeasureSpec  = MeasureSpec.adjust(widthMeasureSpec,  optical ? -oWidth  : oWidth);
                heightMeasureSpec = MeasureSpec.adjust(heightMeasureSpec, optical ? -oHeight : oHeight);
            }
    
            // Suppress sign extension for the low bytes
            long key = (long) widthMeasureSpec << 32 | (long) heightMeasureSpec & 0xffffffffL;
            if (mMeasureCache == null) mMeasureCache = new LongSparseLongArray(2);
    
            final boolean forceLayout = (mPrivateFlags & PFLAG_FORCE_LAYOUT) == PFLAG_FORCE_LAYOUT;
    
            // Optimize layout by avoiding an extra EXACTLY pass when the view is
            // already measured as the correct size. In API 23 and below, this
            // extra pass is required to make LinearLayout re-distribute weight.
            final boolean specChanged = widthMeasureSpec != mOldWidthMeasureSpec
                    || heightMeasureSpec != mOldHeightMeasureSpec;
            final boolean isSpecExactly = MeasureSpec.getMode(widthMeasureSpec) == MeasureSpec.EXACTLY
                    && MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.EXACTLY;
            final boolean matchesSpecSize = getMeasuredWidth() == MeasureSpec.getSize(widthMeasureSpec)
                    && getMeasuredHeight() == MeasureSpec.getSize(heightMeasureSpec);
            final boolean needsLayout = specChanged
                    && (sAlwaysRemeasureExactly || !isSpecExactly || !matchesSpecSize);
    
            if (forceLayout || needsLayout) {
                // first clears the measured dimension flag
                mPrivateFlags &= ~PFLAG_MEASURED_DIMENSION_SET;
    
                resolveRtlPropertiesIfNeeded();
    
                int cacheIndex = forceLayout ? -1 : mMeasureCache.indexOfKey(key);
                if (cacheIndex < 0 || sIgnoreMeasureCache) {
                    // measure ourselves, this should set the measured dimension flag back
                    onMeasure(widthMeasureSpec, heightMeasureSpec);
                    mPrivateFlags3 &= ~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT;
                } else {
                    long value = mMeasureCache.valueAt(cacheIndex);
                    // Casting a long to int drops the high 32 bits, no mask needed
                    setMeasuredDimensionRaw((int) (value >> 32), (int) value);
                    mPrivateFlags3 |= PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT;
                }
    
                // flag not set, setMeasuredDimension() was not invoked, we raise
                // an exception to warn the developer
                if ((mPrivateFlags & PFLAG_MEASURED_DIMENSION_SET) != PFLAG_MEASURED_DIMENSION_SET) {
                    throw new IllegalStateException("View with id " + getId() + ": "
                            + getClass().getName() + "#onMeasure() did not set the"
                            + " measured dimension by calling"
                            + " setMeasuredDimension()");
                }
    
                mPrivateFlags |= PFLAG_LAYOUT_REQUIRED;
            }
    
            mOldWidthMeasureSpec = widthMeasureSpec;
            mOldHeightMeasureSpec = heightMeasureSpec;
    
            mMeasureCache.put(key, ((long) mMeasuredWidth) << 32 |
                    (long) mMeasuredHeight & 0xffffffffL); // suppress sign extension
        }
    
    /**
         * <p>
         * Measure the view and its content to determine the measured width and the
         * measured height. This method is invoked by {@link #measure(int, int)} and
         * should be overridden by subclasses to provide accurate and efficient
         * measurement of their contents.
         * </p>
         *
         * <p>
         * <strong>CONTRACT:</strong> When overriding this method, you
         * <em>must</em> call {@link #setMeasuredDimension(int, int)} to store the
         * measured width and height of this view. Failure to do so will trigger an
         * <code>IllegalStateException</code>, thrown by
         * {@link #measure(int, int)}. Calling the superclass'
         * {@link #onMeasure(int, int)} is a valid use.
         * </p>
         *
         * <p>
         * The base class implementation of measure defaults to the background size,
         * unless a larger size is allowed by the MeasureSpec. Subclasses should
         * override {@link #onMeasure(int, int)} to provide better measurements of
         * their content.
         * </p>
         *
         * <p>
         * If this method is overridden, it is the subclass's responsibility to make
         * sure the measured height and width are at least the view's minimum height
         * and width ({@link #getSuggestedMinimumHeight()} and
         * {@link #getSuggestedMinimumWidth()}).
         * </p>
         *
         * @param widthMeasureSpec horizontal space requirements as imposed by the parent.
         *                         The requirements are encoded with
         *                         {@link android.view.View.MeasureSpec}.
         * @param heightMeasureSpec vertical space requirements as imposed by the parent.
         *                         The requirements are encoded with
         *                         {@link android.view.View.MeasureSpec}.
         *
         * @see #getMeasuredWidth()
         * @see #getMeasuredHeight()
         * @see #setMeasuredDimension(int, int)
         * @see #getSuggestedMinimumHeight()
         * @see #getSuggestedMinimumWidth()
         * @see android.view.View.MeasureSpec#getMode(int)
         * @see android.view.View.MeasureSpec#getSize(int)
         */
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec),
                    getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec));
        }
    
        /**
         * <p>This method must be called by {@link #onMeasure(int, int)} to store the
         * measured width and measured height. Failing to do so will trigger an
         * exception at measurement time.</p>
         *
         * @param measuredWidth The measured width of this view.  May be a complex
         * bit mask as defined by {@link #MEASURED_SIZE_MASK} and
         * {@link #MEASURED_STATE_TOO_SMALL}.
         * @param measuredHeight The measured height of this view.  May be a complex
         * bit mask as defined by {@link #MEASURED_SIZE_MASK} and
         * {@link #MEASURED_STATE_TOO_SMALL}.
         */
        protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) {
            boolean optical = isLayoutModeOptical(this);
            if (optical != isLayoutModeOptical(mParent)) {
                Insets insets = getOpticalInsets();
                int opticalWidth  = insets.left + insets.right;
                int opticalHeight = insets.top  + insets.bottom;
    
                measuredWidth  += optical ? opticalWidth  : -opticalWidth;
                measuredHeight += optical ? opticalHeight : -opticalHeight;
            }
            setMeasuredDimensionRaw(measuredWidth, measuredHeight);
        }
    

    在测量传递的递归过程中,按照视图树自上而下的顺序,每个视图将其尺寸向下传递,当测量传递结束后,每个视图的尺寸都会被记录下来[2].
    父视图可能会对子视图进行多次测量,比如,父视图会对每一个不确定尺寸(unspecified dimendions)的子视图进行一次测量,获取子视图想要得到的尺寸,但是当所有不确定尺寸子视图尺寸之和过大或过小时,就会对子视图再次测量.

    测量传递通过两个类来沟通测量尺寸.
    第一个是View.MeasureSpec类,用来封装由父视图传递给子视图的布局需求.每一个MeasureSpec对象包括一个宽或者高的数值以及以下三种可能的模式(mode)之一:
    1.UNSPECIFIED:父视图不会对子视图施加任何约束,子视图可以自己随意定义大小.
    2.EXACTLY:父视图给子视图定义一个确定的大小值,子视图会忽略自己本身大小,并使用父视图给定的这个大小值确定边界.
    3AT_MOST:父视图给子视图定义一个最大值,在这个最大值范围之内子视图可以取任意值.
    第二个是ViewGroup不同子类对应的LayoutParams类,用来描述视图想要获取的宽和高,可以是一个确定值,也可以是MATCH_PARENT(占满父视图)或WRAP_CONTENT(包裹内容).

    布局传递

    布局传递也是一个自上而下的传递过程,通过layout(int,int,int,int)方法实现,在这一传递过程中,每一个父视图会根据在测量传递过程中记录的尺寸数据对属于自己的子视图进行布局.

     /**
         * Assign a size and position to a view and all of its
         * descendants
         *
         * <p>This is the second phase of the layout mechanism.
         * (The first is measuring). In this phase, each parent calls
         * layout on all of its children to position them.
         * This is typically done using the child measurements
         * that were stored in the measure pass().</p>
         *
         * <p>Derived classes should not override this method.
         * Derived classes with children should override
         * onLayout. In that method, they should
         * call layout on each of their children.</p>
         *
         * @param l Left position, relative to parent
         * @param t Top position, relative to parent
         * @param r Right position, relative to parent
         * @param b Bottom position, relative to parent
         */
        @SuppressWarnings({"unchecked"})
        public void layout(int l, int t, int r, int b) {
            if ((mPrivateFlags3 & PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT) != 0) {
                onMeasure(mOldWidthMeasureSpec, mOldHeightMeasureSpec);
                mPrivateFlags3 &= ~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT;
            }
    
            int oldL = mLeft;
            int oldT = mTop;
            int oldB = mBottom;
            int oldR = mRight;
    
            boolean changed = isLayoutModeOptical(mParent) ?
                    setOpticalFrame(l, t, r, b) : setFrame(l, t, r, b);
    
            if (changed || (mPrivateFlags & PFLAG_LAYOUT_REQUIRED) == PFLAG_LAYOUT_REQUIRED) {
                onLayout(changed, l, t, r, b);
                mPrivateFlags &= ~PFLAG_LAYOUT_REQUIRED;
    
                ListenerInfo li = mListenerInfo;
                if (li != null && li.mOnLayoutChangeListeners != null) {
                    ArrayList<OnLayoutChangeListener> listenersCopy =
                            (ArrayList<OnLayoutChangeListener>)li.mOnLayoutChangeListeners.clone();
                    int numListeners = listenersCopy.size();
                    for (int i = 0; i < numListeners; ++i) {
                        listenersCopy.get(i).onLayoutChange(this, l, t, r, b, oldL, oldT, oldR, oldB);
                    }
                }
            }
    
            mPrivateFlags &= ~PFLAG_FORCE_LAYOUT;
            mPrivateFlags3 |= PFLAG3_IS_LAID_OUT;
        }
    
        /**
         * Called from layout when this view should
         * assign a size and position to each of its children.
         *
         * Derived classes with children should override
         * this method and call layout on each of
         * their children.
         * @param changed This is a new size or position for this view
         * @param left Left position, relative to parent
         * @param top Top position, relative to parent
         * @param right Right position, relative to parent
         * @param bottom Bottom position, relative to parent
         */
        protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        }
    

    想要初始化(initiate)一个布局,需要调用requestLayout()方法.通常,当一个view不能适应当前边界时会自己调用这个方法.


    1. View的ID不强制要求唯一,但是如果在我们想要在视图树的某一部分里查找某一个View时,就要保证在这一部分该View的ID是唯一的.

    2. 当一个视图的measure()方法回调时,它和它子视图的getMeasuredWidth()和getMeasuredHeight()值必须被设定.因为view的测量宽度和测量高度受到其父视图的约束,所以测量传递结束时父视图可以确保能够接受所有子视图的测量结果.

    相关文章

      网友评论

          本文标题:View 1

          本文链接:https://www.haomeiwen.com/subject/etvmpttx.html