动态添加控件

来源:互联网 发布:node v6.11.1 x64.msi 编辑:程序博客网 时间:2024/05/19 13:56
//添加一个控件//指定一个容器放控件(添加单个控件也可以不指定容器)
LinearLayout mainLinear = (LinearLayout) view.findViewById(R.id.item_wms_lr);

mainLinear.removeAllViews();

//声明要动态添加的控件
TextView waveNum = new TextView(this);waveNum.setPadding(10, 10, 0, 10);waveNum.setTextSize(18);waveNum.setBackground(getResources().getDrawable(R.drawable.background_pop_vertical));                   waveNum.setTextColor(getResources().getColor(R.color.bb_1));waveNum.setText(getString(R.string.StokeNum) + mStokeResponseBean.getStockTakings().get(position).getStockTakingNum());
waveNum.setCompoundDrawablesRelativeWithIntrinsicBounds(getResources().getDrawable(R.drawable.ic_back_black),null,null,null);

//添加
mainLinear.addView(waveNum);


//添加一组控件
for (int i = 0; i < mParcelsNums; i++) {    editText = new EditText[mParcelsNums];    editText[i] = new EditText(Sp_ReturnRegister.this);    editText[i].setBackgroundColor(getResources().getColor(R.color.white));    editText[i].setTextColor(getResources().getColor(R.color.bb_1));    editText[i].setHintTextColor(getResources().getColor(R.color.gray));    editText[i].setHint(getString(R.string.ParcelsNums));/*   Drawable drawable = getResources().getDrawable(R.drawable.ic_back_black);    drawable.setBounds(0, 0, 32, 32);    editText[i].setCompoundDrawables(drawable, drawable, drawable, drawable);*/    editText[i].setCompoundDrawablesRelativeWithIntrinsicBounds(getResources().getDrawable(R.drawable.ic_back_black),null,null,null);    mLlParcelsNums.addView(editText[i]);}

0 0
原创粉丝点击