Post

Android的自定义View

ViewGroup会为ChildView指定测量模式

  • EXACTLY:精确的值,一般当ChildView设置其宽高为精确值或者match_parent时,ViewGroup会将其设置为EXACTLY

  • AT_MOST:表示子布局被限制在一个最大值内,ChildView设置其宽高为wrap_content时,ViewGroup会将其设置为AT_MOST

  • UNSPECIFIED:不限制ChildView,一般出现在AadapterView,ScrollView的ChildViewHeightMode中。

源码地址
BlogCode01

参考
Creating Custom Views

This post is licensed under CC BY 4.0 by the author.