`

Android onMeasure onLayout

 
阅读更多

 

开始之前不得不说到view的绘制流程,,,请参考:绘制流程 。。。

 

1. onMeasure a. 属于View的方法,用来测量自己和内容的来确定宽度和高度 b. view的measure方法体中会调用onMeasure

2. onLayout a. 属于ViewGroup的方法,用来为当前ViewGroup的子元素的位置和大小 b. View的layout方法体中会调用onLayout

3.onMeasure和onLayout onMeasure在onLayout之前调用

4. 设置background后,会重新调用onMeasure和onLayout

onMeasure测量子VIEW大小后调用LAYOUT布局 所以初始化的时候会多次调用onlayout方法

 

 

(一)onMeasure:

 

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)

 

onMeasure方法在控件的父元素正要放置它的子控件时调用.它会问一个问题,“你想要用多大地方啊?”,然后传入两个参数——widthMeasureSpec和heightMeasureSpec.

  它们指明控件可获得的空间以及关于这个空间描述的元数据.

  比返回一个结果要好的方法是你传递View的高度和宽度到setMeasuredDimension方法里.

  接下来的代码片段给出了如何重写onMeasure.注意,调用的本地空方法是来计算高度和宽度的.它们会译解widthHeightSpec和heightMeasureSpec值,并计算出合适的高度和宽度值.

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

    int measuredHeight = measureHeight(heightMeasureSpec);
    int measuredWidth = measureWidth(widthMeasureSpec);
    setMeasuredDimension(measuredHeight, measuredWidth);
    }

    private int measureHeight(int measureSpec) {


    // Return measured widget height.
    }

    private int measureWidth(int measureSpec) {

    // Return measured widget width.
    }

   边界参数——widthMeasureSpec和heightMeasureSpec ,效率的原因以整数的方式传入。

 

      MeasureSpec 封装了父布局传递给子布局的布局要求,每个MeasureSpec 代表了一组宽度和高度的要求。一个MeasureSpec 由大小和模式组成。

    它有三种模式:

                    UNSPECIFIED( 未指定),      父元素不对自元素施加任何束缚,子元素可以得到任意想要的大小;

                    EXACTLY( 完全) ,父元素决定自元素的确切大小,子元素将被限定在给定的边界里而忽略它本身大小;

                    AT_MOST( 至多) ,子元素至多达到指定大小的值。

   它常用的三个函数:

    1.static int getMode(int measureSpec): 根据提供的测量值( 格式) 提取模式( 上述三个模式之一)

  2.static int getSize(int measureSpec): 根据提供的测量值( 格式) 提取大小值( 这个大小也就是我们通常所说的大小)

  3.static int makeMeasureSpec(int size,int mode): 根据提供的大小值和模式创建一个测量值( 格式)

     这个类的使用呢,通常在view 组件的onMeasure 方法里面调用但也有少数例外

 

       在它们使用之前,首先要做的是使用MeasureSpec类的静态方法getMode和getSize来译解,如下面的片段所示:

    int specMode = MeasureSpec.getMode(measureSpec);
    int specSize = MeasureSpec.getSize(measureSpec);

 

       依据specMode的值,如果是AT_MOST,specSize 代表的是最大可获得的空间;如果是EXACTLY,specSize 代表的是精确的尺寸;如果是UNSPECIFIED,对于控件尺寸来说,没有任何参考意义。
  当以EXACT方式标记测量尺寸,父元素会坚持在一个指定的精确尺寸区域放置View。在父元素问子元素要多大空间时,AT_MOST指示者会说给我最大的范围。在很多情况下,你得到的值都是相同的。
  在两种情况下,你必须绝对的处理这些限制。在一些情况下,它可能会返回超出这些限制的尺寸,在这种情况下,你可以让父元素选择如何对待超出的View,使用裁剪还是滚动等技术。

  接下来的框架代码给出了处理View测量的典型实现:

    @Override

    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

    int measuredHeight = measureHeight(heightMeasureSpec);

    int measuredWidth = measureWidth(widthMeasureSpec);

    setMeasuredDimension(measuredHeight, measuredWidth);

    }

    private int measureHeight(int measureSpec) {

    int specMode = MeasureSpec.getMode(measureSpec);
    int specSize = MeasureSpec.getSize(measureSpec);

    // Default size if no limits are specified.

    int result = 500;
    if (specMode == MeasureSpec.AT_MOST){

    // Calculate the ideal size of your
    // control within this maximum size.
    // If your control fills the available
    // space return the outer bound.

    result = specSize;
    }
    else if (specMode == MeasureSpec.EXACTLY){

    // If your control can fit within these bounds return that value.
    result = specSize;
    }

    return result;
    }

    private int measureWidth(int measureSpec) {
    int specMode = MeasureSpec.getMode(measureSpec);
    int specSize = MeasureSpec.getSize(measureSpec);

    // Default size if no limits are specified.
    int result = 500;
    if (specMode == MeasureSpec.AT_MOST){
    // Calculate the ideal size of your control
    // within this maximum size.
    // If your control fills the available space
    // return the outer bound.
    result = specSize;
    }

    else if (specMode == MeasureSpec.EXACTLY){
    // If your control can fit within these bounds return that value.

    result = specSize;
    }

    return result;
    }
 

(二)onLayout:

在onLayout之中尽量不要做onMeasure的事情,,,是看到这篇文章,,并没有验证: 文章。。。

直接看例子吧 ,,讲的很清楚了。。。

HelloViewGroup:

public class HelloViewGroup extends ViewGroup {  
  
    private float mTouchStartX;  
    private float mTouchStartY;  
    private int x = 0;  
    private int y = 0;  
    private int mSelectView = -1;  
      
    Context mContext;  
  
    public HelloViewGroup(Context context) {  
        super(context);  
        mContext = context;  
        // TODO Auto-generated constructor stub  
    }  
  
    @Override  
    protected void onLayout(boolean changed, int l, int t, int r, int b) {  
        if (mSelectView != -1) {  
            View v = getChildAt(mSelectView);  
            if (v != null)  
                v.layout(x, y, x + 300, y + 500);  
            return;  
        }  
        View v = getChildAt(0);  
        if (v != null)  
            v.layout(x, y, x + 300, y + 500);  
        View v1 = getChildAt(1);  
        if (v1 != null)  
            v1.layout(x + 300, y, x + 600, y + 500);  
        View v2 = getChildAt(2);  
        if (v2 != null)  
            v2.layout(x + 600, y, x + 900, y + 500);  
    }  
  
    public boolean onTouchEvent(MotionEvent event) {  
        float down_x = event.getX();  
        float down_y = event.getY();  
        switch (event.getAction()) {  
        case MotionEvent.ACTION_DOWN:  
            if (mSelectView == -1) {  
                for (int i = 0; i < getChildCount(); i++) {  
                    View child = getChildAt(i);  
                    if ((child.getLeft() < down_x && down_x < child.getRight())  
                            && (child.getTop() < down_y && down_y < child  
                                    .getBottom())) {  
                        mSelectView = i;  
                        break;  
                    }  
                }  
            }  
            break;  
        case MotionEvent.ACTION_MOVE:  
            x = (int) event.getRawX() - 100;  
            y = (int) event.getRawY() - 100;  
  
            this.requestLayout();  
            break;  
        case MotionEvent.ACTION_UP:  
            mSelectView = -1;  
            break;  
  
        }  
  
        return true;  
    }  
  
}

 MainActivity:

public class MainActivity extends Activity {  
    Context mContext;  
    /** Called when the activity is first created. */  
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
  
        HelloViewGroup my =  new HelloViewGroup(this);  
        mContext = this;  
        ImageView mIcon = new ImageView( mContext);  
        ImageView mIcon1 = new ImageView( mContext);  
        ImageView mIcon2 = new ImageView( mContext);  
        mIcon.setImageResource(R.drawable.nvshen1);  
        mIcon1.setImageResource(R.drawable.nvshen2);  
        mIcon2.setImageResource(R.drawable.nvshen5);  
        my.addView(mIcon);  
        my.addView(mIcon1);  
        my.addView(mIcon2);  
        setContentView(my);  
          
         
        }  
          
    }  

 工程下载》》》

 

 

 

分享到:
评论

相关推荐

    博客&lt;FlowLayout详解(一)——onMeasure()与onLayout()&gt;对应源码

    博客《FlowLayout详解(一)——onMeasure()与onLayout()》对应源码,博客地址:http://blog.csdn.net/harvic880925/article/details/47029169

    Android下如何理解onMeasure,onLayout的过程

    onLayout在Android中view如何完成绘制这个过程介绍了很多,但是很多理论化的东西,最近重新整理一下,通俗的讲解一下。View绘制过程就好比你向银行贷款, 在Android中view如何完成绘制这个过程介绍了很多,但是很多...

    自定义view,父容器无限onmeasure、 onlayout

    在Android的视图绘制流程中,`onMeasure`负责确定View及其子View的大小,而`onLayout`则负责确定它们的位置。这两个方法是View的生命周期中至关重要的部分,因为它们直接影响到屏幕上的显示效果和性能。 `onMeasure...

    Android 重写ViewGroup 分析onMeasure()和onLayout()方法

    Android 重写ViewGroup 中onMeasure()和onLayout()方法详解 Android 中的 ViewGroup 是一个抽象类,继承自 View,提供了基本的布局管理功能。为了提供更好的自定义布局,需要重写 ViewGroup 中的两个重要方法:...

    覆写onMeasure例子

    在Android中,`onMeasure()`方法用于测量View的尺寸,它决定了View的宽度和高度。通常,我们会在自定义View中覆写这个方法,以便根据内容或者特定需求计算出合适的大小。下面将详细介绍`onMeasure()`的工作原理以及...

    ViewGroup用onLayout实现view的自由移动

    当一个`ViewGroup`需要重新布局时,Android会调用`onMeasure()`方法来测量每个子视图的大小,然后在`onLayout()`中确定这些子视图的位置。`onLayout()`方法接收四个参数:`left`, `top`, `right`, `bottom`,分别...

    android流式布局onLayout()方法详解

    Android流式布局onLayout()方法详解 Android流式布局是Android UI开发中的一种常见布局方式,onLayout()方法是该布局方式中一个非常重要的方法。在Android流式布局中,onLayout()方法主要用来确定子控件的位置和...

    Android 简单实现一个流式布局的示例

    本篇文章主要介绍了Android 简单实现一个流式布局的示例,分享给大家,具体如下: 流式布局应该是我们很常见的一种布局了,在很多场景下都会遇到它,例如:标签之类的功能等。用轮子不如造轮子来的爽,这里自己...

    基于Android的卫星菜单按钮实现

    * (2)重写onMeasure与onLayout方法,设置菜单按钮的布局位置 * 2、定位Item(设置每一个菜单项的位置) * 3、展开Item(动画效果实现,包括菜单按钮旋转动画、菜单项平移、旋转动画、菜单项缩放、透明度变换动画...

    自定义View和viewGroup

    开发者可以通过重写View或ViewGroup类的onMeasure、onLayout、onDraw方法来实现自定义的View或ViewGroup。下面我们将详细介绍View和ViewGroup的工作原理和实现方法。 View的工作原理 ------------- View的工作原理...

    Android实现多维商品属性SKU选择

    在这个 ViewGroup 中,我们 override 了 onMeasure 和 onLayout 方法,以便实现自适应宽高的布局。 2. RecyclerView:我们使用 RecyclerView 来展示 SKU 选择的列表。RecyclerView 是 Android 中的一个强大的控件,...

    [开源]Android瀑布流实例_android_waterfall-master

    首先考虑的是这样实现比较简单,代码量不多,简单易懂,不用涉及AdapterView里的一些复杂View显示方法(onMeasure,onLayout等),回收算法也是采用相对简单实用的方式,虽然那个现在还有Bug,就是突然刷新到第一页的...

    自定义View的PPT

    自定义View的PPT,包含了Android里面自定义View的onMeasure,onLayout等知识点

    Android 仿淘宝、京东商品详情页向上拖动查看图文详情控件DEMO详解

    1、继承viewGroup自定义布局View 重写onMeasure()和onLayout方法,在onLayout方法中完成对两个子ScrollView的竖直排列布局,代码如下: 布局文件: &lt;RelativeLayout xmlns:android=...

    Android-Android可自动换行的布局--AutoWrapLineLayout

    首先需要继承ViewGroup, 在这里我们需要重写它的onMeasure和onLayout方法。本项目中它的子View有两种填充方式,一种是Fill_PARENT,一种是WRAP_CONTENT,看名字应该能知道是什么意思吧。

    Android自定义标签选择器TagView

    在这个类中,我们需要重写`onMeasure()`和`onLayout()`方法来确定每个子View的位置。同时,我们需要为添加、删除和选择标签提供接口。 ```java public class TagView extends ViewGroup { private List&lt;TagItem&gt; ...

    Android自定义控件开发入门与实战.zip

    1. 创建一个新的Java类:继承自View或ViewGroup,并重写必要的生命周期方法,如onDraw()用于绘制视图,onMeasure()和onLayout()用于确定视图的大小和位置。 2. 设计UI布局:在XML布局文件中声明自定义控件,并设置...

    android 瀑布流效果

    自定义ViewGroup是最基础的方法,需要继承LinearLayout、GridView或者RecyclerView等视图容器,并重写其onMeasure()和onLayout()方法。在onMeasure()中计算每个子View的宽度和高度,而在onLayout()中根据屏幕宽度和...

Global site tag (gtag.js) - Google Analytics