博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Activity启动过程中获取组件宽高的五种方式
阅读量:5058 次
发布时间:2019-06-12

本文共 2622 字,大约阅读时间需要 8 分钟。

 

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

/** * 重写Acitivty的onWindowFocusChanged方法 */ @Overridepublic 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 width:" + widht + " " + " height:" + height; } }

 

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

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

 

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

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

 

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

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

 

总结:

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

关于我

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

转载于:https://www.cnblogs.com/songjianzaina/p/10362574.html

你可能感兴趣的文章
10个让你忘记 Flash 的 HTML5 应用演示
查看>>
8个Python面试必考的题目,小编也被坑过 ToT
查看>>
SQL Server 使用作业设置定时任务之一(转载)
查看>>
centos 图形界面和命令行界面切换(转载)
查看>>
Maven启用代理访问
查看>>
Primary definition
查看>>
第二阶段冲刺-01
查看>>
BZOJ1045 HAOI2008 糖果传递
查看>>
发送请求时params和data的区别
查看>>
JavaScript 克隆数组
查看>>
eggs
查看>>
一步步学习微软InfoPath2010和SP2010--第七章节--从SP列表和业务数据连接接收数据(4)--外部项目选取器和业务数据连接...
查看>>
如何增强你的SharePoint 团队网站首页
查看>>
FZU 1914 Funny Positive Sequence(线性算法)
查看>>
oracle 报错ORA-12514: TNS:listener does not currently know of service requested in connec
查看>>
基于grunt构建的前端集成开发环境
查看>>
MySQL服务读取参数文件my.cnf的规律研究探索
查看>>
java string(转)
查看>>
__all__有趣的属性
查看>>
BZOJ 5180 [Baltic2016]Cities(斯坦纳树)
查看>>