码迷,mamicode.com
首页 > 移动开发 > 详细

android开发 获取父控件的高宽

时间:2015-08-13 12:02:53      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        
        //获取SingleTouchView所在父布局的中心点
        ViewGroup mViewGroup = (ViewGroup) getParent();
        if(null != mViewGroup){
            mParentWidth = mViewGroup.getWidth();
            mParentHeight = mViewGroup.getHeight();
        }
        
    }

 

android开发 获取父控件的高宽

标签:

原文地址:http://www.cnblogs.com/feijian/p/4726698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!