您好,登錄后才能下訂單哦!
在 Android 中動態添加 RadioButton 控件可以通過以下步驟實現:
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radioGroup);
RadioButton radioButton1 = new RadioButton(this);
radioButton1.setText("Option 1");
radioButton1.setId(1); // 設置 RadioButton 的唯一標識
RadioButton radioButton2 = new RadioButton(this);
radioButton2.setText("Option 2");
radioButton2.setId(2); // 設置 RadioButton 的唯一標識
// 將 RadioButton 控件添加到 RadioGroup 中
radioGroup.addView(radioButton1);
radioGroup.addView(radioButton2);
以上代碼中,我們首先獲取 RadioGroup 控件的實例,然后創建兩個 RadioButton 控件,并設置它們的文本和唯一標識,最后將它們添加到 RadioGroup 中。
通過以上步驟,我們就可以在 Android 應用中動態添加 RadioButton 控件了。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。