在onCreate方法中获取某个View的宽度和高度
首先声明转载URL:http://chenfeng0104.iteye.com/blog/1186850
?
有时候需要在onCreate方法中知道某个View组件的宽度和高度等信息,而直接调用View组件的getWidth()、getHeight()、getMeasuredWidth()、getMeasuredHeight()、getTop()、getLeft()等方法是无法获取到真实值的,只会得到0。这是因为View组件布局要在onResume回调后完成。下面提供实现方法,onGlobalLayout回调会在布局完成时自动调用
?
final LinearLayout imageViewContainer = (LinearLayout)findViewById(R.id.crop_photo_image_view_container);
? ? ? ? imageViewContainer.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
? ? ? ? ? ? boolean isFirst = true;//默认调用两次,这里只让它执行一次回调
? ? ? ? ? ? @Override
? ? ? ? ? ? public void onGlobalLayout() {
? ? ? ? ? ? ? ? if (isFirst) {
? ? ? ? ? ? ? ? ? ? isFirst = false;
? ? ? ? ? ? ? ? ? ? //现在布局全部完成,可以获取到任何View组件的宽度、高度、左边、右边等信息
? ? ? ? ? ? ? ? ? ? Log.i("CDH", "Global W:"+imageViewContainer.getMeasuredWidth()+" ?H:"+imageViewContainer.getMeasuredHeight());
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? });