View 和ViewGroup

来源:互联网 发布:橡胶木与橡木区别 知乎 编辑:程序博客网 时间:2024/06/11 22:12

Android的UI界面都是由View和ViewGroup及其派生类组合而成的。
View是所有UI组件的基类,而View是容纳这些组件的容器,其本身也是从view类派生出来的。

View派生出的直接子类有:
AnalogClock ImageView KeyBoardView ProgressBar SurfaceView TextView
ViewGroup ViewStub

ViewGroup派生出的直接子类有:
AbsoluteLayout AdapterView FramentBreadCrumbs FrameLayout LinearLayout RelativeLayout SlidingDrawer

0 0