且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

android View未渲染时获得高度

更新时间:2022-10-04 16:49:43

android View未渲染时获得高度
ViewTreeObserver vto = tv.getViewTreeObserver();
            vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
                public void onGlobalLayout() {
                    
                    heigh = appDescription.getHeight();
                    
                    tv.getViewTreeObserver().removeGlobalOnLayoutListener(this);
                }
            });
android View未渲染时获得高度