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

动态生成linearLayout

时间:2015-11-30 13:04:47      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

LinearLayout linearLayout=new LinearLayout(this);
linearLayout.setOrientation(LinearLayout.VERTICAL);

LinearLayout.LayoutParams param=
new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
linearLayout.setLayoutParams(param);
// 每个layout都是一个ViewGroup
// linearLayout.addView(child);
// linearLayout.removeView(view);

TextView textview=new TextView(this);
textview.setText("hello world");
textview.setTextSize(30);

textview.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {

ViewGroup group = (ViewGroup) v.getParent();
TextView textview = new TextView(MainActivity.this);
textview.setText("this is onclickListener");
textview.setTextSize(30);
textview.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
ViewGroup group = (ViewGroup) v.getParent();
group.removeView(v);
}
});

group.addView(textview);

}
});



linearLayout.addView(textview);
this.setContentView(linearLayout);//将linearlayout添加到视图中
}

 

动态生成linearLayout

标签:

原文地址:http://www.cnblogs.com/guozhiping/p/5006768.html

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