![240](https://upload.jianshu.io/users/upload_avatars/14359804/28505702-3be9-42c2-bd5e-29c564c1c1b7.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
IP属地:河北
在 Android 中使用 Drawable 目录下图片时,会根据当前设备 DPI 匹配最接近的 Drawable DPI 目录,并在其中拿到图...
with 函数定义为: inline fun <T, R> with(receiver: T, block: T.() -> R): R 接收一...
在 Android 中,除了 Thread 以外,还有 AsyncTask、HandlerThread 和 IntentService 充当线程...
Android 消息机制主要指 Handler 的运行机制,包括了 MessageQueue、Looper 和 Handler 的共同作用。其中...
Android 动画分为两大类 视图动画 属性动画 视图动画(View animation) 视图动画分为 补间动画 帧动画 补间动画(Twee...
这里介绍 View 的 Layout 和 Draw 过程。 Layout 过程 Layout 过程的作用是 ViewGroup 来确定子元素的位...
View 工作流程 View 的工作流程包括 Measure、Layout、Draw 三个过程。其中 Measure 测量 View 的宽高,L...
ViewRoot 和 DecorView ViewRoot ViewRoot 对应 ViewRootImpl 类,是连接 WindowManag...