Android中Activity和view之间的关系

来源:互联网 发布:地理数据名词解释 编辑:程序博客网 时间:2024/05/16 10:42

SDK文档中如此介绍:

The surface is Z ordered so that it is behind the window holding its SurfaceView; the SurfaceView punches a hole in its window to allow its surface to be displayed. The view hierarchy will take care of correctly compositing with the Surface any siblings of the SurfaceView that would normally appear on top of it. This can be used to place overlays such as buttons on top of the Surface, though note however that it can have an impact on performance since a full alpha-blended composite will be performed each time the Surface changes. 



您就直接告诉我吧,我得理解:
一个activity对应一个或多个window,
一个window对应多个surface,
一个view对应一个surface
对不对?

原创粉丝点击