码迷,mamicode.com
首页 > 其他好文 > 详细

自定义控件设置layout_weight

时间:2014-08-20 22:29:52      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   ar   div   log   line   

自定义一个控件,继承view。当多个这个控件被放入linearlayout中时,发现不能使用 myView1.setWeight()。

此时需要在自定义控件中编写一个这样的方法:

    public void setWeight(float weight) {
        LinearLayout.LayoutParams param = new LinearLayout.LayoutParams(
                LayoutParams.MATCH_PARENT,
                LayoutParams.MATCH_PARENT, weight);
        setLayoutParams(param);
    }

就可在外部调用 

 myView1.setWeight(1);
 myView2.setWeight(1);

 

自定义控件设置layout_weight,布布扣,bubuko.com

自定义控件设置layout_weight

标签:style   blog   color   使用   ar   div   log   line   

原文地址:http://www.cnblogs.com/fangtest/p/3925521.html

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