首页 > 其他 > 详细

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

时间:2016-12-23 18:50:29      阅读:1085      评论:0      收藏:0      [点我收藏+]

先看代码:

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不显示问题

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!