去掉RadioButton的圆圈按钮
android:button="@null"
设置图片在文字的相对位置
android:drawableTop="图片资源"
给RadioButton的isChecked赋值为true会选中当前RadioButton,并调用RadioGroup.setOnCheckedChangeListener 回调函数
代码中修改文字颜色,大小,textStyle
TextView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 16f) //单位sp
TextView.typeface = Typeface.DEFAULT_BOLD
TextView.setTextColor(Color.parseColor("#99FFFFFF"))
RadioButton.compoundDrawables //获取RadioButton左上右下图片资源数组
setCompoundDrawablesRelativeWithIntrinsicBounds(null, null, null, null) //将RadioButton左上右下图片资源设置为空,相当于隐藏