动态添加View

来源:互联网 发布:top域名不备案会怎么样 编辑:程序博客网 时间:2024/05/19 13:10
String lable = "#" + allLableList.get(i);RadioButton radioButton = new RadioButton(mActivity);radioButton.setText(lable);radioButton.setTextSize(14f);radioButton.setButtonDrawable(null);radioButton.setBackgroundResource(R.drawable.bg_growth_radio);radioButton.setTextColor(mActivity.getResources().getColorStateList(R.drawable.bg_growth_textcolor));//距离其它组件的距离  等于   android:padding="15dp"radioButton.setPadding(Window.toPx(15), 0, Window.toPx(15), 0);// android:layout_width="wrap_content"RadioGroup.LayoutParams params = new RadioGroup.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);//内边距//params.setMargins(0, Window.toPx(5), 0, Window.toPx(5));radioButton.setLayoutParams(params);radioButton.setId(i);optionRg.addView(radioButton);

0 0