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

viewgroup用addview添加的view不显示问题

时间:2016-12-23 18:51:13      阅读:2232      评论:0      收藏:0      [点我收藏+]

标签:false   init   group   代码   hang   tcl   idt   cte   extends   

先看代码:

public class MyviewGroup extends ViewGroup {
private final Context context;
private View view;

public MyviewGroup(Context context) {
super(context,null);
this.context = context;
}

public MyviewGroup(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
removeAllViews();
this.setFocusable(false);
this.setClickable(false);
this.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
initview();
}

private void initview() {
if (null == view){
view = LayoutInflater.from(context).inflate(R.layout.itme, null, true);
}

addView(view);
LinearLayout.LayoutParams params =
new android.widget.LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
params.width = 200;
params.height = 200;
view.setLayoutParams(params);
}

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
int childCount = getChildCount();
Log.e("tag", "onLayout: "+childCount );
int top = 0;
for (int i = 0; i < childCount; i++) {
View view = getChildAt(i);

view.layout(l+top,t,top+l+60,t+60);
top = top+70;
}
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// TODO Auto-generated method stub
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
final int count = getChildCount();
for (int i = 0; i < count; i++) {
//这个很重要,没有就不显示
getChildAt(i).measure(widthMeasureSpec, heightMeasureSpec);
}
}
}

addview之后要重新给子view设置宽高。


viewgroup用addview添加的view不显示问题

标签:false   init   group   代码   hang   tcl   idt   cte   extends   

原文地址:http://www.cnblogs.com/renjiemei1225/p/6215671.html

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