0
A
回答
2
可能這是任何幫助;
public class RadDemoActivity extends Activity {
private RadioGroup radGroup;
private Button addButton;
private RadioButton radButton;
private static int no;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
no=0;
doInflateItems();
setAddButton();
}
private void doInflateItems() {
radGroup = (RadioGroup) findViewById(R.id.radGroup);
addButton = (Button) findViewById(R.id.addRad);
}
private void setAddButton() {
addButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
radButton = new RadioButton(getApplicationContext());
radButton.setText("Option " + no++);
radGroup.addView(radButton);
}
});
}
}
XML佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:id="@+id/addRad" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Add" />
<ScrollView android:id="@+id/vScroll" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<RadioGroup android:id="@+id/radGroup"
android:layout_width="wrap_content" android:layout_height="wrap_content" />
</ScrollView>
</LinearLayout>
此代碼是從一個按鈕,點擊添加單選按鈕,你可以從一個循環,如果你想一次添加多個按鈕的功能是相同的。希望這可以幫助。
3
我請你說清楚的事情,但我得到了,你想多數量的單選按鈕,
Take a loop and create dynamic RadioButton add these button to Radio Group
+0
感謝您的幫助^^ – android
相關問題
- 1. 如何使用vue.js(和v模型)在不知道值的情況下選擇第一個單選按鈕
- 2. JNI:在事先不知道大小的情況下創建jobjectArray
- 3. 如何在沒有javascript的情況下創建div按鈕?
- 4. 如何在R不知道時間的情況下在R中創建矢量?
- 5. RadioGroup.clearCheck()不工作的情況下動態創建的單選按鈕
- 6. 如何知道在特定情況下
- 7. 如何在不知道表是否存在的情況下在「創建視圖」中執行計數
- 8. 如何在不知道特定IP版本的情況下創建`IpAddr`?
- 9. 如何在不知道參數的情況下使用dll?
- 10. 如何在默認情況下檢查單選按鈕?
- 11. 如何在不按下按鈕的情況下開始活動?
- 12. 如何在不知道按鈕ID /類或表單ID /類的情況下提交表單?
- 13. 在不知道父菜單的情況下合併菜單?
- 14. 在不知道佈局的情況下計算JavaFX動畫值
- 15. 如何在僅在運行時知道類型的情況下創建對象?
- 16. 知道這種情況下
- 17. 如何在不按下按鈕的情況下突出顯示按鈕
- 18. 如何在不按菜單按鈕的情況下顯示菜單?
- 19. 如何在不提交表單的情況下按Enter鍵單擊按鈕
- 20. 如何在不知道表單標識的情況下訪問表單元素?
- 21. 在單選按鈕上單擊鼠標,在不檢查單選按鈕的情況下執行操作
- 22. 如何單擊按鈕並在不知道ID或類值的情況下刪除兩件事?
- 23. 如何在不知道位置的情況下打開目錄
- 24. 如何在不知道浮子長度的情況下fscanf?
- 25. 如何在不知道密鑰的情況下銷燬notification_key?
- 26. 如何在不知道類名的情況下調用方法?
- 27. 如何在不知道寬度的情況下對齊div?
- 28. 如何在不按按鈕的情況下顯示此內容?
- 29. 獲取單選按鈕的值在動作的情況下
- 30. 如何在沒有表單的情況下循環播放單選按鈕組?
你做到了嗎? – Sameer
我特林,但我不知道如何創建動態RadioButton,你有任何例子嗎? – android