您的位置:首页 > 移动开发 > Android开发

如何在activity和fragment获取控件的大小

2016-09-27 16:02 1661 查看
在 Activity的onCreate() 中调用某个按钮的 myButton.getHeight(),得到的结果永远是0
onCreate(): Height=0

onStart(): Height=0

onPostCreate(): Height=0

onResume(): Height=0

onPostResume(): Height=0

onAttachedToWindow(): Height=0

onWindowsFocusChanged(): Height=1845

可以看到,直到 onWinodwsFocusChanged() 函数被调用,我们才能得到正确的控件尺寸。其他 Hook 函数,包括在官方文档中,描述为在 Activity 完全启动后才调用的 onPostCreate() 和 onPostResume() 函数,均不能得到正确的结果。但是该方法只适用于Activity

对于Fragment可以采用下面的方法:
1. 使用 ViewTreeObserver 提供的 Hook 方法。

@Override

protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_welcome);

    myButton = (Button) findViewById(R.id.button1);

    

    // 向 ViewTreeObserver 注册方法,以获取控件尺寸

    ViewTreeObserver vto = myButton.getViewTreeObserver();

    vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

        public void onGlobalLayout() {

            int h = myButton.getHeight();

            Log.i(TAG, "Height=" + h); // 得到正确结果

 

            // 成功调用一次后,移除 Hook 方法,防止被反复调用

            // removeGlobalOnLayoutListener() 方法在 API 16 后不再使用

            // 使用新方法 removeOnGlobalLayoutListener() 代替

            myButton.getViewTreeObserver().removeGlobalOnLayoutListener(this);

        } 

    });

    

    // ...

}

该方法在 onGlobalLayout() 方法将在控件完成绘制后调用,因而可以得到正确地结果。该方法在 Fragment 中,也可以使用。

2. 使用 View 的 post() 方法

@Override

protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_welcome);

    myButton = (Button) findViewById(R.id.button1);

    

    // 使用myButton 的 post() 方法

    myButton.post(new Runnable() {

        @Override

        public void run() {

            int h = myButton.getHeight();

            Log.i(TAG, "Height=" + h); // 得到正确结果

        }

    });

    

    // ...

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息