Android学习一——动态添加组件与删除,可见性设置,imagebutton简单使用

一、动态添加组件

在布局为水平线性布局的情况下,添加的布局会直接加在后面,这里只是简单介绍添加布局的方法取到上下文,取到要添加组件的布局,new一个要添加的组件,设置组件相关属性,添加组件。

 
  
// 动态添加textview
mcontext = this;
mlinearlayout = (LinearLayout) findViewById(R.id.LinearLayout1);
mtext1 = new TextView(mcontext);
mtext1.setText("动态添加的textview");
mlinearlayout.addView(mtext1);

二、删除组件

用removeview()删除组件

//删除最后一个组件
int m=mlinearlayout.getChildCount();
Log.i("childcount",String.valueOf(m));//调试输出
mlinearlayout.removeView(mlinearlayout.getChildAt(m-1));

删除指定行以后的所有组件

mlinearlayout.removeViews(5, num_add);//删除布局中第五行以后的添加的组件

三、imagebutton简单使用

设置图片:

imgbtn.setImageDrawable(getResources().getDrawable(R.drawable.state1));
 
  

设置图片后可能导致button大小发生改变,可以设置它的布局参数:

imgbtn.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, 150,(float)0.5));



 

你可能感兴趣的:(Android)