
Android源码分析
afunx
这个作者很懒,什么都没留下…
展开
-
MeasureSpec源码分析
MeasureSpec源码分析 MeasureSpec是View.java中的静态内部类。 以下源码来自于Android 27(Android 8.1 Oreo) /** * A MeasureSpec encapsulates the layout requirements passed from parent to child. * Each MeasureSpec represents a requirement for either the width or the原创 2021-01-31 21:24:37 · 296 阅读 · 0 评论 -
getChildMeasureSpec()源码分析
getChildMeasureSpec()源码分析 getChildMeasureSpec()方法是ViewGroup.java中的关键代码。所有的ViewGroup在测量child view时,最终都会调用到该方法。 以下源码来自于Android 27(Android 8.1 Oreo) /** * Does the hard part of measureChildren: figuring out the MeasureSpec to * pass to a par原创 2021-01-17 16:53:32 · 581 阅读 · 0 评论