アプリケーションは、各グループに 8 つのボタンを持つ 16 のラジオ グループを持つステップ シーケンサー アプリケーションです。グループでボタンが選択されると、作成したクリアボタンを使用してすべてのラジオグループをクリアしない限り、ボタンをオフにすることはできません。追加したいのは、選択したラジオ ボタンを再度選択すると、単にトグルのようにオフになるというコードです。トグルを使用してみましたが、その方法で他の問題が発生しました。以下はそれへの試みですが、それは的外れであると推測しています
final RadioGroup radioGroup1 = (RadioGroup)findViewById(R.id.RadioGroup1);
RadioButton lC1 = (RadioButton)findViewById(R.id.RadioButtonlowC1);
Button D1 = (Button)findViewById(R.id.RadioButtonD1);
D1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
PdBase.sendFloat("D1", 74);
int selectedTypeId = radioGroup1.getCheckedRadioButtonId();
RadioButton D1 = (RadioButton) findViewById(selectedTypeId);
if(radioGroup1 != null) // This will be null if none of the radio buttons are selected
radioGroup1.clearCheck();
PdBase.sendFloat("D1", 0);
}
});