onMeasure方法

  • onMeasure()方法中 宽高默认都使用matchparent
  • 因为当父View为AT_MOST、View为match_parent时,该View的match_parent的效果就等于wrap_content
  • 通过打断点:在xml中为宽高使用指定的尺寸或者match_parent时,onMeasure()方法都会走MeasureSpec.EXACTLY
  • mode共有三种情况,取值分别为:MeasureSpec.UNSPECIFIED, MeasureSpec.EXACTLY,
    MeasureSpec.AT_MOST。
  • MeasureSpec.EXACTLY是精确尺寸,
  • 当我们将控件的layout_width或layout_height指定为具体数值时,比如andorid:layout_width="50dip",或者为match_parent时,都是控件大小已经确定的情况,都是精确尺寸。
  • MeasureSpec.AT_MOST是最大尺寸, 当控件的layout_width或layout_height指定为WRAP_CONTENT时,控件大小一般随着控件的子空间或内容进行变化,此时控件尺寸只要不超过父控件允许的最大尺寸即可。因此,此时的mode是AT_MOST,size给出了父控件允许的最大尺寸。
  • MeasureSpec.UNSPECIFIED是未指定尺寸,这种情况不多,一般都是父控件是AdapterView 通过measure方法传入的模式。
onMeasure方法_第1张图片
image.png

onMeasure方法_第2张图片
image.png
  • 解决方案:


    onMeasure方法_第3张图片
    image.png

你可能感兴趣的:(onMeasure方法)