您好,登錄后才能下訂單哦!
在 Android 中,可以通過代碼動態創建 RadioButton 控件并添加到布局中。以下是一個簡單的示例:
<LinearLayout
android:id="@+id/radioGroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
LinearLayout radioGroup = findViewById(R.id.radioGroup);
for (int i = 0; i < 3; i++) {
RadioButton radioButton = new RadioButton(this);
radioButton.setText("RadioButton " + i);
// 設置 RadioButton 的屬性
radioButton.setLayoutParams(new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
// 添加點擊事件監聽器
radioButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 處理 RadioButton 被點擊事件
}
});
// 將 RadioButton 添加到容器中
radioGroup.addView(radioButton);
}
通過這樣的方式,可以動態創建多個 RadioButton 控件并添加到布局中,實現動態布局。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。