Android的自定义View
ViewGroup会为ChildView
指定测量模式
EXACTLY:精确的值,一般当
ChildView
设置其宽高为精确值或者match_parent
时,ViewGroup
会将其设置为EXACTLY
;AT_MOST:表示子布局被限制在一个最大值内,
ChildView
设置其宽高为wrap_content
时,ViewGroup
会将其设置为AT_MOST
;UNSPECIFIED:不限制
ChildView
,一般出现在AadapterView,ScrollView的ChildView
的HeightMode
中。
源码地址
BlogCode01
This post is licensed under CC BY 4.0 by the author.