首页 > 代码库 > viewgroup用addview添加的view不显示问题
viewgroup用addview添加的view不显示问题
先看代码:
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不显示问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。