尊敬板凳

文章
6
资源
0
加入时间
3年0月9天

彻底理解 Window 和 WindowManagerWindow 分类WindowManager 使用WindowManager 的内部机制Window 的创建过程总结

所有需要显示到屏幕上的内容(包括Activity等)都是通过WindowManager来操作的窗口的本质是其实就是一块显示区域,在 Android 中就是绘制的画布:Surface,当一块 Surface 显示在屏幕上时,就是用户所看到的窗口了。WindowManagerService 添加一个窗口的过程,其实就是 WindowManagerService 为其分配一块 Surface 的过程,一...

leetcode57

题目:Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially sorted according to their start times. Ex...