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

Posted 跳动的米

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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不显示问题的主要内容,如果未能解决你的问题,请参考以下文章

[Android FrameWork 6.0源码学习] ViewGroup的addView函数分析

自定义Groupview添加子view的问题

Android自己定义组件系列——自己定义View及ViewGroup

如何在 ViewGroup 中使用 addView?

[android] 界面切换的核心方法

自定义View进阶-手绘地图