zoukankan      html  css  js  c++  java
  • Activity启动过程中获取组件宽高的五种方式

     

    第一种:(重写Activity的onWindowFocusChanged方法)

    /**
     * 重写Acitivty的onWindowFocusChanged方法
     */ 
    @Override
    public void onWindowFocusChanged(boolean hasFocus) {
    super.onWindowFocusChanged(hasFocus);
    /**
     * 当hasFocus为true的时候,说明Activity的Window对象已经获取焦点,进而Activity界面已经加载绘制完成
     */
    if (hasFocus) {
    int widht = titleText.getWidth();
    int height = titleText.getHeight();
    Log.i(TAG, "onWindowFocusChanged " + widht + "   "
    + "  height:" + height;
    }
    }

    第二种:(为组件添加OnGlobalLayoutListener事件监听)

    /**
     * 为Activity的布局文件添加OnGlobalLayoutListener事件监听,当回调到onGlobalLayout方法的时候我们通过getMeasureHeight和getMeasuredWidth方法可以获取到组件的宽和高
     */
    private void initOnLayoutListener() {
    final ViewTreeObserver viewTreeObserver = this.getWindow().getDecorView().getViewTreeObserver();
    viewTreeObserver.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
    @Override
    public void onGlobalLayout() {
    Log.i(TAG, "开始执行onGlobalLayout().........");
    int height = titleText.getMeasuredHeight();
    int width = titleText.getMeasuredWidth();
    
    Log.i(TAG, "height:" + height + "   " + width);
       // 移除GlobalLayoutListener监听 
       MainActivity.this.getWindow().getDecorView().getViewTreeObserver().removeOnGlobalLayoutListener(this);
    }
    });
    }

    第三种:(为组件添加OnPreDrawListener事件监听)

    /**
     * 初始化viewTreeObserver事件监听,重写OnPreDrawListener获取组件高度
     */
    private void initOnPreDrawListener() {
    final ViewTreeObserver viewTreeObserver = this.getWindow().getDecorView().getViewTreeObserver();
    viewTreeObserver.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
    @Override
    public boolean onPreDraw() {
    Log.i(TAG, "开始执行onPreDraw().........");
    int height = titleText.getMeasuredHeight();
    int width = titleText.getMeasuredWidth();
    
    Log.i(TAG, "height:" + height + "   " + width);
    // 移除OnPreDrawListener事件监听
    MainActivity.this.getWindow().getDecorView().getViewTreeObserver().removeOnPreDrawListener(this);
    return true;
    }
    });
    }

    第四种:(使用View.post方法获取组件的宽高)

    /**
     * 使用View的post方法获取组件的宽度和高度
     */
    private void initViewHandler() {
    titleText.post(new Runnable() {
    @Override
    public void run() {
    int width = titleText.getWidth();
    int height = titleText.getHeight();
    
    Log.i(TAG, "initViewHandler height:" + height + "  " + width);
    }
    });
    }

    第五种:(通过Handler对象使用异步消息获取组件的宽高)

    /**
     * 在onCreate方法中发送异步消息,在handleMessage中获取组件的宽高
     */
    private Handler mHandler = new Handler() {
    
    @Override
    public void handleMessage(Message msg) {
    if (msg.what == 101) {
    int width = titleText.getWidth();
    int height = titleText.getHeight();
    
    Log.i(TAG, "initViewHandler height:" + height + "  " + width);
    }
    }
    };

    总结:

    • 第一种重写onWidnowFocusChanged方法获取组件宽高的方式,方法可能会执行多次,这点需要我们注意
    • 本人在实际开发中使用第二种较多

    关于我

    CSDN博客

    简书

    私人博客

    微信公众号:infree6 或者直接扫码

  • 相关阅读:
    array_merge() 用法
    session_unset 与 session_destroy 区别
    关联模型中
    TP框架中分页类的使用
    ajax验证用户名是否被注册 ; ajax提交form表单
    点击图片img提交form表单
    输入框蓝光特效
    搭建owncloud私有云
    小米路由器3-R3 刷固件
    mysql的sql_mode合理设置
  • 原文地址:https://www.cnblogs.com/songjianzaina/p/10362574.html
Copyright © 2011-2022 走看看