我有一個內置動態選項的抽屜菜單,我需要填充它。 我想清除adapter
內部的RadioGroup
的所有孩子,但我沒有找到任何東西。清除一個視圖的所有孩子(RadioGroup)
P.S:我填補所有RadioGroup
與addView
與CheckBox
PS2填充它:這是問題不在於檢查和取消。我想知道如何去除視圖中的所有孩子(如RadioGroup
)。
viewHolder.mRadioGroup.setVisibility(View.VISIBLE);
/////clear viewHolder.mRadioGroup child hear, befor add new child to it
for (int i; i<10; i++) {
RadioButton radioButton = new RadioButton(mContext);
radioButton.setText(selectableValue.getValue());
viewHolder.mRadioGroup.addView(radioButton);
}
radioGroup.clearCheck(); –
@DhawalSodhaParmar我想清除孩子,不清除檢查 – Ashkan