Android中在OnCreate时获得控件高度

来源:互联网 发布:彩票中奖查询软件 编辑:程序博客网 时间:2024/05/21 14:42
ViewTreeObserver vto = mArrowUp.getViewTreeObserver();vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {    @Override    public void onGlobalLayout() {    mArrowUp.getViewTreeObserver().removeGlobalOnLayoutListener(this);        Log.e("Width",Integer.toString(mArrowUp.getWidth()));            }});


原创粉丝点击