addView

addView就是动态添加子控件到父控件中去

情况一:

如果父控件是LinearLayout,子控件可以是TextView或Button等

LinearLayout ll = (LinearLayout)findViewById(R.id.ll);
// 将TextView 加入到LinearLayout 中
TextView tv = new TextView(this);
tv.setText(我);

情况二:指定要添加子控件在父控件的位置,通过LayoutParams来指定

 //参数一:宽度
        //参数二:高度 
        LinearLayout.LayoutParams params=new LinearLayout.LayoutParams(
                0,LinearLayout.LayoutParams.MATCH_PARENT
        );
 
  
 
  

你可能感兴趣的:(addView)