Ben iki radyo düğmesi oluşturmak zorunda gösterilmiyor.Java Android Radyo Düğmesi
final RadioButton Bluetooth = new RadioButton(this);
Bluetooth.setId(TEXT_ID);
alertDialogBuilder.setView(Bluetooth);
Bluetooth.setText("Bluetooth");
Bluetooth.setTextSize(20);
final RadioButton RS232 = new RadioButton(this);
RS232.setId(TEXT_ID);
alertDialogBuilder.setView(RS232);
RS232.setText("RS232");
RS232.setTextSize(20);
Lütfen düzeninizi de paylaşın xml! – KostasC
Üzgünüz, ama XML'im yok. Amaç, iki RadioButton'u bir alertdialog'a eklemek. Kullanıcı madde menüsünü tıkladığında alertdialog görüntülenir. – McNavy