如何得到fragment的高度?
业精于勤,荒于嬉;行成于思,毁于随。
Fragment依附在View容器中,得到View的高度不就是是Fragment高度了?
fragment没有提供像Activity类似的onWindowFocusChanged方法,但可以使用ViewTreeObserver来获取。
fragment
Activity
onWindowFocusChanged
ViewTreeObserver
transaction.replace(frameLayout,fragment)得到frameLayout的高度就可以了
fragment.getView().getMeasuredHeight()
Fragment依附在View容器中,得到View的高度不就是是Fragment高度了?
fragment
没有提供像Activity
类似的onWindowFocusChanged
方法,但可以使用ViewTreeObserver
来获取。transaction.replace(frameLayout,fragment)
得到frameLayout的高度就可以了
fragment.getView().getMeasuredHeight()