• Activity中何时能拿到组件的宽高


            在日常Android开发中,你什么时候才能在Activity中准确拿到组件View的宽高呢?大部分情况下我们在onCreate()中就已经findViewById()了,那是不是只要在这之后就能准确拿到组件的宽高呢?

            我们写代码跑一下试试,我们分别在onCreate()结束时,onStart()开始和结束时,onResume()开始和结束时去尝试获取View的width和measuredWidth,看看到底能不能拿到宽高。

            由于页面布局就是个约束布局里面放着一个按钮,因此布局文件不贴了。

    1. package com.openld.seniorstructure.testobtainviewwidth
    2. import android.os.Bundle
    3. import android.util.Log
    4. import android.widget.Button
    5. import androidx.appcompat.app.AppCompatActivity
    6. import com.openld.seniorstructure.R
    7. class TestObtainViewWidthActivity : AppCompatActivity() {
    8. private lateinit var mBtn: Button
    9. override fun onCreate(savedInstanceState: Bundle?) {
    10. super.onCreate(savedInstanceState)
    11. setContentView(R.layout.activity_test_obtain_view_width)
    12. initWidgets()
    13. Log.d(
    14. ">>>>>>",
    15. "onCreate end: btn.width = ${mBtn.width} btn.measuredWidth = ${mBtn.measuredWidth}"
    16. )
    17. }
    18. private fun initWidgets() {
    19. mBtn = findViewById(R.id.btn)
    20. }
    21. override fun onStart() {
    22. Log.d(
    23. ">>>>>>",
    24. "onStart start: btn.width = ${mBtn.width} btn.measuredWidth = ${mBtn.measuredWidth}"
    25. )
    26. super.onStart()
    27. Log.d(
    28. ">>>>>>",
    29. "onStart end: btn.width = ${mBtn.width} btn.measuredWidth = ${mBtn.measuredWidth}"
    30. )
    31. }
    32. override fun onResume() {
    33. Log.d(
    34. ">>>>>>",
    35. "onResume start: btn.width = ${mBtn.width} btn.measuredWidth = ${mBtn.measuredWidth}"
    36. )
    37. super.onResume()
    38. Log.d(
    39. ">>>>>>",
    40. "onResume end: btn.width = ${mBtn.width} btn.measuredWidth = ${mBtn.measuredWidth}"
    41. )
    42. }
    43. }

            运行一下页面看下日志如下:

             啪啪打脸,可以毫无疑问地说,即便是在onResume()结束的时候,你直接通过view.getWidth()或者view.getMeasuredWidth()也是拿不到实际的组件宽高的。

            那怎么在Activity中去拿到组件的宽高呢?这里有两个思路,一个是在onCreate()中调用view.post()去拿。另一个是在onWindowFocusChanged()回调中去拿。

            我们先试一下post方式。

    1. override fun onCreate(savedInstanceState: Bundle?) {
    2. super.onCreate(savedInstanceState)
    3. setContentView(R.layout.activity_test_obtain_view_width)
    4. initWidgets()
    5. mBtn.post {
    6. Log.d(
    7. ">>>>>>",
    8. "onCreate 中调用mBtn.post btn.width = ${mBtn.width} btn.measuredWidth = ${mBtn.measuredWidth}"
    9. )
    10. }
    11. Log.d(
    12. ">>>>>>",
    13. "onCreate end: btn.width = ${mBtn.width} btn.measuredWidth = ${mBtn.measuredWidth}"
    14. )
    15. }

             可以看到正确拿到了。断点看了下会走到postOnAniumation()方法,这个方法注释很关键。

    1. public static void postOnAnimation(@NonNull View view, @NonNull Runnable action) {
    2. if (Build.VERSION.SDK_INT >= 16) {
    3. Api16Impl.postOnAnimation(view, action);
    4. } else {
    5. view.postDelayed(action, ValueAnimator.getFrameDelay());
    6. }
    7. }

    Causes the Runnable to execute on the next animation time step. The runnable will be run on the user interface thread.
    This method can be invoked from outside of the UI thread only when this View is attached to a window.

            意思是说只有View被真正附加到了window上才会执行,那拿到宽高就不足为奇了。

            我们再试一下onWindowFocusChanged()。

            可以看到同样能够正确拿到组件宽高。 可以看下方法注释,其实就是页面真正获取或失去了焦点会回调这个方法,那获取焦点的时候拿宽高当然是拿得到的。

  • 相关阅读:
    变量和函数提升(js的问题)
    顾樵 量子力学I 导读(1)
    zookeeper 查询注册的 dubbo 服务
    动漫制作技巧如何制作动漫视频
    卷积神经网络梯度消失,神经网络中梯度的概念
    【C++】STL各容器对比
    Kernel Memory 入门系列:快速开始
    微信聚合聊天系统的便捷功能:自动回复
    仙人掌之歌——大规模高速扩张(1)
    C++ 类和对象(二)构造函数、析构函数、拷贝构造函数
  • 原文地址:https://blog.csdn.net/ldld1717/article/details/125628957