zoukankan      html  css  js  c++  java
  • 视图体系

    /**
     * The top of a view hierarchy, implementing the needed protocol between View
     * and the WindowManager.  This is for the most part an internal implementation
     * detail of {
    @link WindowManagerGlobal}.
     *
     * {
    @hide}
     */

    public final class ViewRootImpl implements ViewParent,
            View.AttachInfo.Callbacks, HardwareRenderer.HardwareDrawCallbacks

    /**
     * Defines the responsibilities for a class that will be a parent of a View.
     * This is the API that a view sees when it wants to interact with its parent.
     *
     */

    ViewParent

    /** Interface to let you add and remove child views to an Activity. To get an instance
      * of this class, call {
    @link android.content.Context#getSystemService(java.lang.String) Context.getSystemService()}.
      */

    public interface ViewManager

    /**
     *
    <p>
     * A
    </code> is a special view that can contain other views
     * (called children.) The view group is the base class for layouts and views
     * containers. This class also defines the
     * {
    @link android.view.ViewGroup.LayoutParams} class which serves as the base
     * class for layouts parameters.
     *
    </p>

    public abstract class ViewGroup extends View implements ViewParent, ViewManager

    public class View implements Drawable.Callback, KeyEvent.Callback,
            AccessibilityEventSource

  • 相关阅读:
    2017级面向对象程序设计 作业三
    2017级面向对象程序设计 作业二
    2017级面向对象程序设计 作业一
    寒假作业之总结
    寒假第三次作业
    寒假第二次作业 与电梯有关的代码问题
    我印象中最深刻的三位老师
    Alpha冲刺Day5
    Alpha冲刺Day4
    Alpha冲刺Day3
  • 原文地址:https://www.cnblogs.com/feng9exe/p/5714403.html
Copyright © 2011-2022 走看看